Skip to content

Commit ee36e11

Browse files
committed
Fix test
1 parent 0c05b66 commit ee36e11

File tree

1 file changed

+3
-2
lines changed
  • tests/std/tests/Dev11_0836436_get_time

1 file changed

+3
-2
lines changed

tests/std/tests/Dev11_0836436_get_time/test.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -794,16 +794,17 @@ void test_invalid_argument() {
794794
time_t t = time(nullptr);
795795
tm currentTime;
796796
localtime_s(&currentTime, &t);
797+
currentTime.tm_hour = 25; // set invalid hour
797798

798799
{
799800
wstringstream wss;
800-
wss << put_time(&currentTime, L"%Y-%m-%d-%H-%M-%s");
801+
wss << put_time(&currentTime, L"%Y-%m-%d-%H-%M");
801802
assert(wss.rdstate() == ios_base::badbit);
802803
}
803804

804805
{
805806
stringstream ss;
806-
ss << put_time(&currentTime, "%Y-%m-%d-%H-%M-%s");
807+
ss << put_time(&currentTime, "%Y-%m-%d-%H-%M");
807808
assert(ss.rdstate() == ios_base::badbit);
808809
}
809810
#endif // _M_CEE_PURE

0 commit comments

Comments
 (0)