jsproxy/tests: A spelling fix for a jsproxy ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2016-04-22 00:36:11 +02:00 committed by Alexandre Julliard
parent 958d143526
commit 712944943f
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ static void test_InternetGetProxyInfo(void)
SetLastError( 0xdeadbeef );
ret = pInternetGetProxyInfo( url, strlen(url), host, strlen(host), &proxy, &len );
err = GetLastError();
ok( !ret, "unexpected succes\n" );
ok( !ret, "unexpected success\n" );
ok( err == ERROR_CAN_NOT_COMPLETE, "got %u\n", err );
buf.dwStructSize = sizeof(buf);