Skip to content

Commit 91c1706

Browse files
committed
chore: fix typo
Signed-off-by: Manish Dait <daitmanish88@gmail.com>
1 parent 8870e6b commit 91c1706

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/query_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def test_set_max_payment_override_client_max_payment(query_requires_payment, moc
299299
query_requires_payment.set_max_query_payment(2)
300300
assert query_requires_payment.max_query_payment == Hbar(2)
301301

302-
# mock the get_cost to resturn 2 hbar as required paymnet
302+
# mock the get_cost to return 2 hbar as required paymnet
303303
mock_get_cost = MagicMock()
304304
mock_get_cost.return_value = Hbar(2)
305305

@@ -346,7 +346,7 @@ def test_payment_query_use_client_max_payment(query_requires_payment, mock_clien
346346
mock_client.set_default_max_query_payment(Hbar(2))
347347
assert mock_client.default_max_query_payment == Hbar(2)
348348

349-
# mock the get_cost to resturn 2 hbar as required paymnet
349+
# mock the get_cost to return 2 hbar as required paymnet
350350
mock_get_cost = MagicMock()
351351
mock_get_cost.return_value = Hbar(2)
352352

0 commit comments

Comments
 (0)