1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-18 20:40:43 +01:00

Change a test value to avoid rounding error.

IMHO it's fine as it doesn't matter if the value is changed a bit after being saved, as the difference is negligible.
This commit is contained in:
Arnaud Bienner 2013-03-18 22:46:11 +01:00
parent b05dc7109d
commit 69d291c621

View File

@ -150,13 +150,13 @@ TEST_F(SongTest, FMPSScore) {
TemporaryResource r(":/testdata/beep.mp3");
{
Song song = ReadSongFromFile(r.fileName());
song.set_score(43);
song.set_score(87);
WriteSongStatisticsToFile(song, r.fileName());
}
Song new_song = ReadSongFromFile(r.fileName());
EXPECT_EQ(43, new_song.score());
EXPECT_EQ(87, new_song.score());
}
TEST_F(SongTest, POPMRating) {