We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40e4dbe commit 868e06eCopy full SHA for 868e06e
tests/app/services/model_install/test_model_install.py
@@ -157,8 +157,8 @@ def test_background_install(
157
assert len(bus.events) == 2
158
assert isinstance(bus.events[0], ModelInstallStartedEvent)
159
assert isinstance(bus.events[1], ModelInstallCompleteEvent)
160
- assert Path(bus.events[0].source) == source
161
- assert Path(bus.events[1].source) == source
+ assert Path(bus.events[0].source.path) == source
+ assert Path(bus.events[1].source.path) == source
162
key = bus.events[1].key
163
assert key is not None
164
0 commit comments