msi/tests: Correct a couple of failure messages in test_msirecord.

This commit is contained in:
Alex Henrie 2022-11-16 23:58:00 -07:00 committed by Alexandre Julliard
parent 1724de4888
commit 2fde0a3f5c

View file

@ -244,11 +244,11 @@ static void test_msirecord(void)
i = MsiRecordSetStringA(h,0,"42");
ok(i == ERROR_SUCCESS, "Failed to set string at 0\n");
i = MsiRecordGetInteger(h, 0);
ok(i == 42, "should get invalid integer\n");
ok(i == 42, "should get 42\n");
i = MsiRecordSetStringA(h,0,"-42");
ok(i == ERROR_SUCCESS, "Failed to set string at 0\n");
i = MsiRecordGetInteger(h, 0);
ok(i == -42, "should get invalid integer\n");
ok(i == -42, "should get -42\n");
i = MsiRecordSetStringA(h,0," 42");
ok(i == ERROR_SUCCESS, "Failed to set string at 0\n");
i = MsiRecordGetInteger(h, 0);