wininet: Fix a test that fails on Windows.

This commit is contained in:
Hans Leidekker 2007-02-12 15:27:36 +01:00 committed by Alexandre Julliard
parent 2024f68753
commit 890f63a1d8
1 changed files with 1 additions and 1 deletions

View File

@ -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 );