Skip to content

Commit 27d7ecf

Browse files
committed
Fix: Cardano all type tests
1 parent 582dc57 commit 27d7ecf

24 files changed

+0
-24
lines changed

tests/hdwallet/hdwallet/cardano/byron-icarus/test_cardano_byron_icarus_from_entropy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def test_byron_icarus_from_entropy(data):
5454
assert hdwallet.root_chain_code() == data["hdwallet"]["Cardano"]["byron-icarus"]["root_chain_code"]
5555
assert hdwallet.root_public_key() == data["hdwallet"]["Cardano"]["byron-icarus"]["root_public_key"]
5656
assert hdwallet.strict() == data["hdwallet"]["Cardano"]["byron-icarus"]["strict"]
57-
assert hdwallet.public_key_type() == data["hdwallet"]["Cardano"]["byron-icarus"]["public_key_type"]
5857

5958
assert hdwallet.path() == data["hdwallet"]["Cardano"]["byron-icarus"]["derivations"][-1]["at"]["path"]
6059
assert hdwallet.indexes() == data["hdwallet"]["Cardano"]["byron-icarus"]["derivations"][-1]["at"]["indexes"]

tests/hdwallet/hdwallet/cardano/byron-icarus/test_cardano_byron_icarus_from_mnemonic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def test_byron_icarus_from_mnemonic(data):
5454
assert hdwallet.root_chain_code() == data["hdwallet"]["Cardano"]["byron-icarus"]["root_chain_code"]
5555
assert hdwallet.root_public_key() == data["hdwallet"]["Cardano"]["byron-icarus"]["root_public_key"]
5656
assert hdwallet.strict() == data["hdwallet"]["Cardano"]["byron-icarus"]["strict"]
57-
assert hdwallet.public_key_type() == data["hdwallet"]["Cardano"]["byron-icarus"]["public_key_type"]
5857

5958
assert hdwallet.path() == data["hdwallet"]["Cardano"]["byron-icarus"]["derivations"][-1]["at"]["path"]
6059
assert hdwallet.indexes() == data["hdwallet"]["Cardano"]["byron-icarus"]["derivations"][-1]["at"]["indexes"]

tests/hdwallet/hdwallet/cardano/byron-icarus/test_cardano_byron_icarus_from_seed.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def test_byron_icarus_from_seed(data):
6868
assert hdwallet.root_chain_code() == dump["root_chain_code"]
6969
assert hdwallet.root_public_key() == dump["root_public_key"]
7070
assert hdwallet.strict() == dump["strict"]
71-
assert hdwallet.public_key_type() == dump["public_key_type"]
7271

7372
assert hdwallet.xprivate_key() == dump["derivation"]["xprivate_key"]
7473
assert hdwallet.xpublic_key() == dump["derivation"]["xpublic_key"]

tests/hdwallet/hdwallet/cardano/byron-icarus/test_cardano_byron_icarus_from_xprivate_key.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ def test_byron_icarus_from_xprivate_key(data):
6767
assert hdwallet.root_chain_code() == dump["root_chain_code"]
6868
assert hdwallet.root_public_key() == dump["root_public_key"]
6969
assert hdwallet.strict() == dump["strict"]
70-
assert hdwallet.public_key_type() == dump["public_key_type"]
7170

7271
assert hdwallet.xprivate_key() == dump["derivation"]["xprivate_key"]
7372
assert hdwallet.xpublic_key() == dump["derivation"]["xpublic_key"]

tests/hdwallet/hdwallet/cardano/byron-ledger/test_cardano_byron_ledger_from_entropy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def test_byron_ledger_from_entropy(data):
5454
assert hdwallet.root_chain_code() == data["hdwallet"]["Cardano"]["byron-ledger"]["root_chain_code"]
5555
assert hdwallet.root_public_key() == data["hdwallet"]["Cardano"]["byron-ledger"]["root_public_key"]
5656
assert hdwallet.strict() == data["hdwallet"]["Cardano"]["byron-ledger"]["strict"]
57-
assert hdwallet.public_key_type() == data["hdwallet"]["Cardano"]["byron-ledger"]["public_key_type"]
5857

5958
assert hdwallet.path() == data["hdwallet"]["Cardano"]["byron-ledger"]["derivations"][-1]["at"]["path"]
6059
assert hdwallet.indexes() == data["hdwallet"]["Cardano"]["byron-ledger"]["derivations"][-1]["at"]["indexes"]

tests/hdwallet/hdwallet/cardano/byron-ledger/test_cardano_byron_ledger_from_mnemonic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def test_byron_ledger_from_mnemonic(data):
5454
assert hdwallet.root_chain_code() == data["hdwallet"]["Cardano"]["byron-ledger"]["root_chain_code"]
5555
assert hdwallet.root_public_key() == data["hdwallet"]["Cardano"]["byron-ledger"]["root_public_key"]
5656
assert hdwallet.strict() == data["hdwallet"]["Cardano"]["byron-ledger"]["strict"]
57-
assert hdwallet.public_key_type() == data["hdwallet"]["Cardano"]["byron-ledger"]["public_key_type"]
5857

5958
assert hdwallet.path() == data["hdwallet"]["Cardano"]["byron-ledger"]["derivations"][-1]["at"]["path"]
6059
assert hdwallet.indexes() == data["hdwallet"]["Cardano"]["byron-ledger"]["derivations"][-1]["at"]["indexes"]

tests/hdwallet/hdwallet/cardano/byron-ledger/test_cardano_byron_ledger_from_seed.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def test_byron_ledger_from_seed(data):
6868
assert hdwallet.root_chain_code() == dump["root_chain_code"]
6969
assert hdwallet.root_public_key() == dump["root_public_key"]
7070
assert hdwallet.strict() == dump["strict"]
71-
assert hdwallet.public_key_type() == dump["public_key_type"]
7271

7372
assert hdwallet.xprivate_key() == dump["derivation"]["xprivate_key"]
7473
assert hdwallet.xpublic_key() == dump["derivation"]["xpublic_key"]

tests/hdwallet/hdwallet/cardano/byron-ledger/test_cardano_byron_legder_from_xprivate_key.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ def test_byron_ledger_from_xprivate_key(data):
6767
assert hdwallet.root_chain_code() == dump["root_chain_code"]
6868
assert hdwallet.root_public_key() == dump["root_public_key"]
6969
assert hdwallet.strict() == dump["strict"]
70-
assert hdwallet.public_key_type() == dump["public_key_type"]
7170

7271
assert hdwallet.xprivate_key() == dump["derivation"]["xprivate_key"]
7372
assert hdwallet.xpublic_key() == dump["derivation"]["xpublic_key"]

tests/hdwallet/hdwallet/cardano/byron-legacy/test_cardano_byron_legacy_from_entropy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def test_byron_legacy_from_entropy(data):
5454
assert hdwallet.root_chain_code() == data["hdwallet"]["Cardano"]["byron-legacy"]["root_chain_code"]
5555
assert hdwallet.root_public_key() == data["hdwallet"]["Cardano"]["byron-legacy"]["root_public_key"]
5656
assert hdwallet.strict() == data["hdwallet"]["Cardano"]["byron-legacy"]["strict"]
57-
assert hdwallet.public_key_type() == data["hdwallet"]["Cardano"]["byron-legacy"]["public_key_type"]
5857

5958
assert hdwallet.path() == data["hdwallet"]["Cardano"]["byron-legacy"]["derivations"][-1]["at"]["path"]
6059
assert hdwallet.indexes() == data["hdwallet"]["Cardano"]["byron-legacy"]["derivations"][-1]["at"]["indexes"]

tests/hdwallet/hdwallet/cardano/byron-legacy/test_cardano_byron_legacy_from_mnemonic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def test_byron_legacy_from_mnemonic(data):
5454
assert hdwallet.root_chain_code() == data["hdwallet"]["Cardano"]["byron-legacy"]["root_chain_code"]
5555
assert hdwallet.root_public_key() == data["hdwallet"]["Cardano"]["byron-legacy"]["root_public_key"]
5656
assert hdwallet.strict() == data["hdwallet"]["Cardano"]["byron-legacy"]["strict"]
57-
assert hdwallet.public_key_type() == data["hdwallet"]["Cardano"]["byron-legacy"]["public_key_type"]
5857

5958
assert hdwallet.path() == data["hdwallet"]["Cardano"]["byron-legacy"]["derivations"][-1]["at"]["path"]
6059
assert hdwallet.indexes() == data["hdwallet"]["Cardano"]["byron-legacy"]["derivations"][-1]["at"]["indexes"]

0 commit comments

Comments
 (0)