From df493757e199b68b2e8ebb7f5583dade21bbb2ce Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Wed, 19 Feb 2025 11:01:13 +0100 Subject: [PATCH 1/2] Update test_auth_levels.py --- integration_tests/test_auth_levels.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_tests/test_auth_levels.py b/integration_tests/test_auth_levels.py index dcf80f9..ff06f8b 100644 --- a/integration_tests/test_auth_levels.py +++ b/integration_tests/test_auth_levels.py @@ -66,7 +66,7 @@ def test_private_with_private_keys(self): # Expect signature validation to pass, although the collateralization # check will fail. expected_error = ( - 'Withdrawal would put account under collateralization minumum' + 'Withdrawal would put account under collateralization minimum' ) expiration_epoch_seconds = time.time() + SEVEN_DAYS_S + 60 try: @@ -130,7 +130,7 @@ def test_private_without_stark_private_key(self): # Expect signature validation to pass, although the collateralization # check will fail. expected_error = ( - 'Withdrawal would put account under collateralization minumum' + 'Withdrawal would put account under collateralization minimum' ) try: client.private.create_withdrawal( From b4f28cca9a8bc470748fc65054a083d329e1b91d Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Wed, 19 Feb 2025 11:01:57 +0100 Subject: [PATCH 2/2] Update test_integration.py --- integration_tests/test_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_tests/test_integration.py b/integration_tests/test_integration.py index c8dfa88..54c6ca7 100644 --- a/integration_tests/test_integration.py +++ b/integration_tests/test_integration.py @@ -65,7 +65,7 @@ def test_integration_without_funds(self): # Expect signature validation to pass, although the collateralization # check will fail. expected_error = ( - 'Withdrawal would put account under collateralization minumum' + 'Withdrawal would put account under collateralization minimum' ) expiration_epoch_seconds = time.time() + SEVEN_DAYS_S + 60 try: @@ -189,7 +189,7 @@ def test_integration(self): # Create a second account under the same user. # # NOTE: Support for multiple accounts under the same user is limited. - # The frontend does not currently support mutiple accounts per user. + # The frontend does not currently support multiple accounts per user. stark_private_key_2 = generate_private_key_hex_unsafe() stark_public_key_2, stark_public_key_y_coordinate_2 = ( private_key_to_public_key_pair_hex(stark_private_key_2)