CollectionBackendTest: Fix build

This commit is contained in:
Jonas Kvinge 2023-07-01 22:34:51 +02:00
parent 33076aa33a
commit d3ee749c14

View File

@ -338,7 +338,7 @@ TEST_F(SingleSong, MarkSongsUnavailable) {
// Check the song is marked as deleted.
Song song = backend_->GetSongById(1);
EXPECT_TRUE(song.is_valid());
EXPECT_TRUE(song.is_unavailable());
EXPECT_TRUE(song.unavailable());
// And the artist or album shouldn't show up either
QStringList artists = backend_->GetAllArtists();