From bf1f1c73e39c7ee6581ee0d5bb2471856a14bdb2 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 7 Dec 2018 08:19:13 -0800 Subject: [PATCH] Fix time test --- test/time-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/time-test.cc b/test/time-test.cc index 52be071a..0b094518 100644 --- a/test/time-test.cc +++ b/test/time-test.cc @@ -121,6 +121,6 @@ TEST(TimeTest, ChronoLocale) { EXPECT_TIME("%OH", tm_hour, 14, hours); EXPECT_TIME("%OI", tm_hour, 14, hours); EXPECT_TIME("%OM", tm_min, 42, minutes); - EXPECT_TIME("%OS", tm_min, 42, seconds); + EXPECT_TIME("%OS", tm_sec, 42, seconds); } #endif