Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 41adc33

Browse files
committed
wrap in () for exp to use polars &
1 parent c55e955 commit 41adc33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql_api/types/test_analytics/test_analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def generate_test_results(
218218
table = table.filter(pl.col("total_flaky_fail_count") > 0)
219219
case TestResultsFilterParameter.SKIPPED_TESTS:
220220
table = table.filter(
221-
pl.col("total_skip_count") > 0 & pl.col("total_pass_count") == 0
221+
(pl.col("total_skip_count") > 0) & (pl.col("total_pass_count") == 0)
222222
)
223223
case TestResultsFilterParameter.SLOWEST_TESTS:
224224
table = table.filter(

0 commit comments

Comments
 (0)