setupapi/tests: A spelling fix in an 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 2019-08-08 15:17:20 +02:00 committed by Alexandre Julliard
parent 7eeb393a30
commit 21db058d14
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ static void test_SetupCopyOEMInf(void)
ok(res == TRUE, "Expected TRUE, got %d\n", res); ok(res == TRUE, "Expected TRUE, got %d\n", res);
ok(GetLastError() == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", GetLastError()); ok(GetLastError() == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", GetLastError());
ok(is_in_inf_dir(dest), "Got unexpected path '%s'.\n", dest); ok(is_in_inf_dir(dest), "Got unexpected path '%s'.\n", dest);
ok(strcmp(dest, orig_dest), "Expected INF files to be copied to differnet paths.\n"); ok(strcmp(dest, orig_dest), "Expected INF files to be copied to different paths.\n");
res = SetupUninstallOEMInfA(strrchr(dest, '\\') + 1, 0, NULL); res = SetupUninstallOEMInfA(strrchr(dest, '\\') + 1, 0, NULL);
ok(res, "Failed to uninstall '%s', error %u.\n", dest, GetLastError()); ok(res, "Failed to uninstall '%s', error %u.\n", dest, GetLastError());