Skip to content

Commit 7ffae19

Browse files
douenergygoldmedal
authored andcommitted
adjust function count
1 parent fa49730 commit 7ffae19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ibis-server/tests/routers/v3/connector/local_file/test_functions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ async def test_function_list(client):
5353
response = await client.get(url=f"{base_url}/functions")
5454
assert response.status_code == 200
5555
result = response.json()
56-
# 438 is the number of functions in `resources/function_list/duckdb.csv` file excluded the default functions in DataFusion.
57-
assert len(result) == DATAFUSION_FUNCTION_COUNT + 438
56+
# 437 is the number of functions in `resources/function_list/duckdb.csv` file excluded the default functions in DataFusion.
57+
assert len(result) == DATAFUSION_FUNCTION_COUNT + 437
5858
the_func = next(filter(lambda x: x["name"] == "array_length", result))
5959
assert the_func == {
6060
"name": "array_length",

0 commit comments

Comments
 (0)