Skip to content

Commit

Permalink
fix: update error message in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jan 12, 2024
1 parent 5a90fff commit 6718dcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/_async/test_gotrue_admin_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,4 @@ async def test_verify_otp_with_invalid_phone_number():
)
assert False
except AuthError as e:
assert e.message == "Invalid phone number format"
assert e.message == "Invalid phone number format (E.164 required)"
2 changes: 1 addition & 1 deletion tests/_sync/test_gotrue_admin_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,4 @@ def test_verify_otp_with_invalid_phone_number():
)
assert False
except AuthError as e:
assert e.message == "Invalid phone number format"
assert e.message == "Invalid phone number format (E.164 required)"

0 comments on commit 6718dcd

Please sign in to comment.