[scrobbles] Fix log saving tests

This commit is contained in:
2026-05-31 23:24:22 -04:00
parent 96d1d7ac6b
commit 8d069df9d1
2 changed files with 21 additions and 13 deletions

View File

@ -607,7 +607,8 @@ def test_scrobble_detail_view_post_updates_log(client):
scrobble.refresh_from_db()
assert scrobble.log["description"] == "Updated description"
assert scrobble.log["notes"] == ["Updated note"]
assert isinstance(scrobble.log["notes"], dict)
assert list(scrobble.log["notes"].values()) == ["Updated note"]
@pytest.mark.skip("Need to refactor")