Skip to content

Commit f9bd02c

Browse files
committed
fix: supply type enum error
1 parent 50f4943 commit f9bd02c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_supply_type.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from hiero_sdk_python.tokens.supply_type import SupplyType
33

44
def test_members():
5-
assert SupplyType.INFINITE.value == 1
6-
assert SupplyType.FINITE.value == 0
5+
assert SupplyType.INFINITE.value == 0
6+
assert SupplyType.FINITE.value == 1
77

88
def test_name():
99
assert SupplyType.INFINITE.name == "INFINITE"

0 commit comments

Comments
 (0)