Skip to content

Commit bfb10c3

Browse files
committed
fix the python test
1 parent 1f3ba20 commit bfb10c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wren-core-py/tests/test_modeling_core.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_read_function_list():
106106
path = "tests/functions.csv"
107107
session_context = SessionContext(manifest_str, path)
108108
functions = session_context.get_available_functions()
109-
assert len(functions) == 273
109+
assert len(functions) == 275
110110

111111
rewritten_sql = session_context.transform_sql(
112112
"SELECT add_two(c_custkey) FROM my_catalog.my_schema.customer"
@@ -118,7 +118,7 @@ def test_read_function_list():
118118

119119
session_context = SessionContext(manifest_str, None)
120120
functions = session_context.get_available_functions()
121-
assert len(functions) == 271
121+
assert len(functions) == 273
122122

123123

124124
def test_get_available_functions():

0 commit comments

Comments
 (0)