Skip to content

Commit 8244244

Browse files
Update test_function_configuration.py
1 parent 84b7a71 commit 8244244

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_function_configuration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ def test_functions_client_initialization() -> None:
66
url = f"https://{ref}.supabase.co"
77
# Sample JWT Key
88
key = "xxxxxxxxxxxxxx.xxxxxxxxxxxxxxx.xxxxxxxxxxxxxxx"
9-
sp = supabase.Client(url, "testkey")
9+
sp = supabase.Client(url, key)
1010
sp.functions()
1111
assert sp.functions_url == f"https://{ref}.functions.supabase.co"
1212

1313
url = "https://localhost:54322"
14-
sp_local = supabase.Client(url, "testkey")
14+
sp_local = supabase.Client(url, key)
1515
assert sp_local.functions_url == f"{url}/functions/v1"

0 commit comments

Comments
 (0)