Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions integration_tests/test_auth_levels.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions integration_tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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)
Expand Down