Skip to content

Commit d7d9dae

Browse files
Fix logic for flake
1 parent 30a47b8 commit d7d9dae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

thicket/tests/test_from_statsframes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def test_multi_trial(
8585
[list(gb.values())[0], list(gb.values())[0]], metadata_key="tuning"
8686
)
8787

88-
if intersection == False:
89-
assert stk.dataframe.shape == (222, 2)
90-
else:
88+
if intersection:
9189
assert stk.dataframe.shape == (192, 2)
90+
else:
91+
assert stk.dataframe.shape == (222, 2)

0 commit comments

Comments
 (0)