Skip to content

Commit

Permalink
Fix test assertion type
Browse files Browse the repository at this point in the history
  • Loading branch information
evanderiel committed Nov 20, 2023
1 parent 5416a6c commit da3a299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aana/tests/test_merge_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ class AnotherOptions(BaseModel):
default = MyOptions(field1="default1", field2=2, field3=True)
to_merge = AnotherOptions(another_field="test")

with pytest.raises(AssertionError):
with pytest.raises(ValueError):
merged_options(default, to_merge)

0 comments on commit da3a299

Please sign in to comment.