Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemia committed Mar 17, 2024
1 parent 5076749 commit 60530ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ffmpeg/utils/lazy_eval/tests/test_lazy_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ def test_lazyoperator_number(snapshot: SnapshotAssertion) -> None:
assert snapshot(extension_class=JSONSnapshotExtension) == loads(dumps(Op))
assert snapshot() == Op.keys()

with pytest.raises(KeyError):
with pytest.raises(ValueError):
Op.eval()

with pytest.raises(KeyError):
with pytest.raises(ValueError):
Op.eval(**{VarX.key: 30})

assert snapshot(name="partial") == str(Op.partial(**{VarX.key: 30}))
Expand Down

0 comments on commit 60530ad

Please sign in to comment.