Skip to content

Commit

Permalink
More python fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Oct 18, 2023
1 parent b98039d commit fcd9eb9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions bindings/python/tests/test_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_feature():

def test_output():
basic_output_dict = {
"type": 3,
"type": 0,
"mana": "999500700",
"amount": "999500700",
"unlockConditions": [
Expand All @@ -43,7 +43,7 @@ def test_output():
assert basic_output.to_dict() == basic_output_dict

basic_output_dict = {
"type": 3,
"type": 0,
"mana": "57600",
"amount": "57600",
"nativeTokens": [
Expand Down Expand Up @@ -82,7 +82,7 @@ def test_output():
assert basic_output.to_dict() == basic_output_dict

basic_output_dict = {
"type": 3,
"type": 0,
"mana": "50100",
"amount": "50100",
"nativeTokens": [
Expand All @@ -109,7 +109,7 @@ def test_output():
assert basic_output.to_dict() == basic_output_dict

account_output_dict = {
"type": 4,
"type": 1,
"mana": "168200",
"amount": "168200",
"accountId": "0x8d073d15074834785046d9cacec7ac4d672dcb6dad342624a936f3c4334520f1",
Expand Down Expand Up @@ -146,7 +146,7 @@ def test_output():
assert account_output.to_dict() == account_output_dict

account_output_dict = {
"type": 4,
"type": 1,
"mana": "55100",
"amount": "55100",
"accountId": "0x5380cce0ac342b8fa3e9c4f46d5b473ee9e824f0017fe43682dca77e6b875354",
Expand Down Expand Up @@ -187,7 +187,7 @@ def test_output():
assert account_output.to_dict() == account_output_dict

foundry_output_dict = {
"type": 5,
"type": 2,
"amount": "54700",
"serialNumber": 1,
"tokenScheme": {
Expand Down Expand Up @@ -216,7 +216,7 @@ def test_output():
assert foundry_output.to_dict() == foundry_output_dict

nft_output_dict = {
"type": 6,
"type": 3,
"mana": "47800",
"amount": "47800",
"nftId": "0x90e84936bd0cffd1595d2a58f63b1a8d0d3e333ed893950a5f3f0043c6e59ec1",
Expand Down

0 comments on commit fcd9eb9

Please sign in to comment.