Skip to content

Commit f25d2b6

Browse files
Revert "fix: use SQLAlchemy .is_(False) instead of Python identity check"
This reverts commit 8ec24f2.
1 parent 6d3781a commit f25d2b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mod_test/controllers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def get_test_results(test) -> List[Dict[str, Any]]:
9999
# We need to check if the regression test had any file that shouldn't have been ignored.
100100
outputs = RegressionTestOutput.query.filter(and_(
101101
RegressionTestOutput.regression_id == category_test['test'].id,
102-
RegressionTestOutput.ignore.is_(False)
102+
RegressionTestOutput.ignore is False
103103
)).all()
104104
got = None
105105
if len(outputs) > 0:

0 commit comments

Comments
 (0)