We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41e1be4 commit 269dfadCopy full SHA for 269dfad
tests/test_client.py
@@ -44,7 +44,11 @@ def test_client_auth(supabase: Client) -> None:
44
random_email: str = f"{_random_string(10)}@supamail.com"
45
random_password: str = _random_string(20)
46
# Sign up (and sign in).
47
- user = supabase.auth.sign_up(email=random_email, password=random_password)
+ user = supabase.auth.sign_up(
48
+ email=random_email,
49
+ password=random_password,
50
+ phone=None,
51
+ )
52
_assert_authenticated_user(user)
53
# Sign out.
54
supabase.auth.sign_out()
0 commit comments