Changed expected output from "0.0" to "0.00"

This commit is contained in:
Benoit Blanchon
2014-11-11 17:33:54 +01:00
parent 3c51017e4a
commit 88bfaac7e6

View File

@ -33,7 +33,7 @@ TEST_F(JsonVariant_PrintTo_Tests, String) {
TEST_F(JsonVariant_PrintTo_Tests, DoubleZero) { TEST_F(JsonVariant_PrintTo_Tests, DoubleZero) {
variant = 0.0; variant = 0.0;
outputMustBe("0.0"); outputMustBe("0.00");
} }
TEST_F(JsonVariant_PrintTo_Tests, DoubleDefaultDigits) { TEST_F(JsonVariant_PrintTo_Tests, DoubleDefaultDigits) {