We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84b7a71 commit 8244244Copy full SHA for 8244244
tests/test_function_configuration.py
@@ -6,10 +6,10 @@ def test_functions_client_initialization() -> None:
6
url = f"https://{ref}.supabase.co"
7
# Sample JWT Key
8
key = "xxxxxxxxxxxxxx.xxxxxxxxxxxxxxx.xxxxxxxxxxxxxxx"
9
- sp = supabase.Client(url, "testkey")
+ sp = supabase.Client(url, key)
10
sp.functions()
11
assert sp.functions_url == f"https://{ref}.functions.supabase.co"
12
13
url = "https://localhost:54322"
14
- sp_local = supabase.Client(url, "testkey")
+ sp_local = supabase.Client(url, key)
15
assert sp_local.functions_url == f"{url}/functions/v1"
0 commit comments