Skip to content

Commit

Permalink
Merge branch 'Aggify:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamadkhalaj authored Nov 5, 2023
2 parents d7635a2 + b731307 commit 0608f34
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_cond.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,5 @@ def test_complex_expression(self):

# Test invalid operator
def test_invalid_operator(self):
with pytest.raises(InvalidOperator):
cond = Cond(25, "invalid_operator", 20, "High", "Low")
assert dict(cond)
with pytest.raises(InvalidOperator) as err:
Cond(25, "invalid_operator", 20, "High", "Low")

0 comments on commit 0608f34

Please sign in to comment.