From 21d96a2f104a02397820eaf6441a21fffab07992 Mon Sep 17 00:00:00 2001 From: John Maguire Date: Mon, 18 Mar 2013 18:02:36 +0100 Subject: [PATCH] Use integer comparison for integer song ratings. --- tests/song_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/song_test.cpp b/tests/song_test.cpp index 1e2613c5a..9a89679b6 100644 --- a/tests/song_test.cpp +++ b/tests/song_test.cpp @@ -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) {