Use integer comparison for integer song ratings.

This commit is contained in:
John Maguire 2013-03-18 18:02:36 +01:00
parent a8144c0599
commit 21d96a2f10
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ TEST_F(SongTest, FMPSScore) {
}
Song new_song = ReadSongFromFile(r.fileName());
EXPECT_FLOAT_EQ(43, new_song.score());
EXPECT_EQ(43, new_song.score());
}
TEST_F(SongTest, POPMRating) {