Skip to content

Commit

Permalink
tests: fix test_model_install.py
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious authored and hipsterusername committed Jan 3, 2025
1 parent 40e4dbe commit 868e06e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/app/services/model_install/test_model_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ def test_background_install(
assert len(bus.events) == 2
assert isinstance(bus.events[0], ModelInstallStartedEvent)
assert isinstance(bus.events[1], ModelInstallCompleteEvent)
assert Path(bus.events[0].source) == source
assert Path(bus.events[1].source) == source
assert Path(bus.events[0].source.path) == source
assert Path(bus.events[1].source.path) == source
key = bus.events[1].key
assert key is not None

Expand Down

0 comments on commit 868e06e

Please sign in to comment.