forked from bblanchon/ArduinoJson
Changed expected output from "0.0" to "0.00"
This commit is contained in:
@ -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) {
|
||||||
|
Reference in New Issue
Block a user