From 1b2c2404ad9df09dc2eb85de02419f22736ceec5 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sat, 30 Nov 2024 19:14:19 -0300 Subject: [PATCH] Fixed unit tests. Follow up df258d545f0b1b6b9ba3bab27ba200164a841c62 . Signed-off-by: Viktor Govako --- platform/platform_tests/measurement_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/platform_tests/measurement_tests.cpp b/platform/platform_tests/measurement_tests.cpp index 11ab0c9ab9..f87eb1e6f2 100644 --- a/platform/platform_tests/measurement_tests.cpp +++ b/platform/platform_tests/measurement_tests.cpp @@ -67,10 +67,10 @@ UNIT_TEST(FormatOsmLink) UNIT_TEST(FormatSpeedNumeric) { TEST_EQUAL(FormatSpeedNumeric(10, Units::Metric), "36", ()); - TEST_EQUAL(FormatSpeedNumeric(1, Units::Metric), "3.6", ()); + TEST_EQUAL(FormatSpeedNumeric(1, Units::Metric), "4", ()); TEST_EQUAL(FormatSpeedNumeric(10, Units::Imperial), "22", ()); - TEST_EQUAL(FormatSpeedNumeric(1, Units::Imperial), "2.2", ()); + TEST_EQUAL(FormatSpeedNumeric(1, Units::Imperial), "2", ()); } UNIT_TEST(OSMDistanceToMetersString)