Skip to content

Commit b60e9a3

Browse files
committed
Improved log formatting on tests
1 parent 9a7dd44 commit b60e9a3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/test_ultra_balances.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ def test_ultra_get_balances() -> None:
2323
for token, details in balances_response.items():
2424
print(f"Token: {token}")
2525
print(f" - Amount: {details['amount']}")
26-
print(f" - UI Amount: {details['uiAmount']}")
27-
print(f" - Slot: {details['slot']}")
28-
print(f" - Is Frozen: {details['isFrozen']}")
26+
print(f" UI Amount: {details['uiAmount']}")
27+
print(f" Slot: {details['slot']}")
28+
print(f" Is Frozen: {details['isFrozen']}")
2929

3030
except Exception as e:
3131
print("Error occurred while fetching balances:", str(e))

tests/test_ultra_shield.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_ultra_shield() -> None:
2727
print(f"Mint: {mint}")
2828
for warning in warnings:
2929
print(f" - Type: {warning.get('type')}")
30-
print(f" - Message: {warning.get('message')}")
30+
print(f" Message: {warning.get('message')}")
3131
else:
3232
print("No warnings returned for provided mints")
3333

0 commit comments

Comments
 (0)