Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 9c94744

Browse files
committed
fix: deflake ai_gen_bool multimodel test
1 parent 5ce5d63 commit 9c94744

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/system/large/bigquery/test_ai.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,5 @@ def test_ai_generate_bool_multi_model(session):
2727
"result"
2828
)
2929

30-
pandas.testing.assert_series_equal(
31-
result.to_pandas(),
32-
pd.Series([True, True, False, False, False], name="result"),
33-
check_dtype=False,
34-
check_index=False,
35-
)
30+
# Make sure all elements are not null
31+
assert len(result) == result.count()

0 commit comments

Comments
 (0)