diff --git a/repertory/repertory_test/src/utils_test.cpp b/repertory/repertory_test/src/utils_test.cpp index 96b74e0c..4277f7c5 100644 --- a/repertory/repertory_test/src/utils_test.cpp +++ b/repertory/repertory_test/src/utils_test.cpp @@ -28,8 +28,8 @@ namespace repertory { #if defined(_WIN32) TEST(utils, convert_api_date) { LARGE_INTEGER li{}; - li.QuadPart = utils::time::unix_time_to_windows_time( - s3_provider::convert_api_date("2009-10-12T17:50:30.111Z")); + li.QuadPart = static_cast(utils::time::unix_time_to_windows_time( + s3_provider::convert_api_date("2009-10-12T17:50:30.000Z"))); SYSTEMTIME st{}; FileTimeToSystemTime(reinterpret_cast(&li), &st); @@ -44,7 +44,7 @@ TEST(utils, convert_api_date) { EXPECT_EQ(17, lt.wHour); EXPECT_EQ(50, lt.wMinute); EXPECT_EQ(30, lt.wSecond); - EXPECT_EQ(111, lt.wMilliseconds); + EXPECT_EQ(0, lt.wMilliseconds); } #endif // defined(_WIN32)