advapi32/tests: Correct the test failure message.

This commit is contained in:
Dmitry Timoshkov 2014-02-11 09:10:42 +09:00 committed by Alexandre Julliard
parent 5e52a29b53
commit 9c010d70b0
1 changed files with 1 additions and 1 deletions

View File

@ -4988,7 +4988,7 @@ static void test_filemap_security(void)
}
else
{
ok(!mapping, "CreateFileMapping(%04x) error %d\n", prot_map[i].prot, GetLastError());
ok(!mapping, "CreateFileMapping(%04x) should fail\n", prot_map[i].prot);
ok(GetLastError() == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
continue;
}