summaryrefslogtreecommitdiff
path: root/tests/stdio_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdio_test.cpp')
-rw-r--r--tests/stdio_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdio_test.cpp b/tests/stdio_test.cpp
index 893e057b7..8c1cef901 100644
--- a/tests/stdio_test.cpp
+++ b/tests/stdio_test.cpp
@@ -381,5 +381,5 @@ TEST(stdio, sscanf) {
ASSERT_EQ(3, sscanf(" hello 123 1.23 ", "%s %i %lf %s", s1, &i1, &d1, s2));
ASSERT_STREQ("hello", s1);
ASSERT_EQ(123, i1);
- ASSERT_EQ(1.23, d1);
+ ASSERT_DOUBLE_EQ(1.23, d1);
}