We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a965395 commit 7ac4ccbCopy full SHA for 7ac4ccb
ibis-server/tests/routers/v3/connector/snowflake/test_functions.py
@@ -43,11 +43,11 @@ def set_remote_function_list_path():
43
async def test_function_list(client):
44
config = get_config()
45
46
- # config.set_remote_function_list_path(None)
47
- # response = await client.get(url=f"{base_url}/functions")
48
- # assert response.status_code == 200
49
- # result = response.json()
50
- # assert len(result) == DATAFUSION_FUNCTION_COUNT
+ config.set_remote_function_list_path(None)
+ response = await client.get(url=f"{base_url}/functions")
+ assert response.status_code == 200
+ result = response.json()
+ assert len(result) == DATAFUSION_FUNCTION_COUNT
51
52
config.set_remote_function_list_path(function_list_path)
53
response = await client.get(url=f"{base_url}/functions")
0 commit comments