Explorar el Código

Changed expected output from "0.0" to "0.00"

Benoit Blanchon hace 11 años
padre
commit
88bfaac7e6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/JsonVariant_PrintTo_Tests.cpp

+ 1 - 1
test/JsonVariant_PrintTo_Tests.cpp

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