@@ -66,25 +66,25 @@ void ControlRoundTrip(const int64_t& time_point, const wchar_t* sys_time) {
6666}
6767
6868TEST_F (DateTimeTest, UnixEpoch) {
69- ControlRoundTrip (0 , L" 1970-01-01T00:00:00 UTC " );
69+ ControlRoundTrip (0 , L" 1970-01-01T00:00:00Z " );
7070}
7171
7272TEST_F (DateTimeTest, RoundtripBefore1000) {
73- ControlRoundTrip (-32350628573LL , L" 944-11-06T10:17:07 UTC " );
73+ ControlRoundTrip (-32350628573LL , L" 944-11-06T10:17:07Z " );
7474}
7575
7676TEST_F (DateTimeTest, RoundtripBefore1900) {
77- ControlRoundTrip (-2359097130LL , L" 1895-03-30T15:14:30 UTC " );
77+ ControlRoundTrip (-2359097130LL , L" 1895-03-30T15:14:30Z " );
7878}
7979
8080TEST_F (DateTimeTest, RoundtripBefore1970) {
81- ControlRoundTrip (-1508726294 , L" 1922-03-11T21:21:46 UTC " );
81+ ControlRoundTrip (-1508726294 , L" 1922-03-11T21:21:46Z " );
8282}
8383
8484TEST_F (DateTimeTest, RoundtripAfter2000) {
85- ControlRoundTrip (1688842924 , L" 2023-07-08T19:02:04 UTC " );
85+ ControlRoundTrip (1688842924 , L" 2023-07-08T19:02:04Z " );
8686}
8787
8888TEST_F (DateTimeTest, RoundtripAfter2038) {
89- ControlRoundTrip (2333089535 , L" 2043-12-07T08:25:35 UTC " );
89+ ControlRoundTrip (2333089535 , L" 2043-12-07T08:25:35Z " );
9090}
0 commit comments