Commit 890f63a1 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wininet: Fix a test that fails on Windows.

parent 2024f687
......@@ -549,7 +549,7 @@ static void InternetTimeToSystemTimeW_test(void)
ret = InternetTimeToSystemTimeW( string, NULL, 0 );
ok( !ret, "InternetTimeToSystemTimeW succeeded (%u)\n", GetLastError() );
ret = InternetTimeToSystemTimeW( string, &time, 1 );
ret = InternetTimeToSystemTimeW( string, &time, 0 );
ok( ret, "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
ret = InternetTimeToSystemTimeW( string, &time, 0 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment