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( 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)