Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Dec 4, 2024
1 parent 15765d8 commit d00c8aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frigate/test/test_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def test_get_good_event(self):

assert event
assert event["id"] == id
assert event == model_to_dict(Event.get(Event.id == id))
assert event["id"] == model_to_dict(Event.get(Event.id == id))["id"]

def test_get_bad_event(self):
app = create_fastapi_app(
Expand Down

0 comments on commit d00c8aa

Please sign in to comment.