ole32/tests: Do not compare returned by DeleteFile value with TRUE.
This commit is contained in:
parent
f4a8ba9548
commit
a8397e307a
|
@ -312,7 +312,7 @@ static void test_storage_stream(void)
|
|||
r = IStorage_Release(stg);
|
||||
ok(r == 0, "wrong ref count\n");
|
||||
r = DeleteFileW(filename);
|
||||
ok(r == TRUE, "file should exist\n");
|
||||
ok(r, "file should exist\n");
|
||||
}
|
||||
|
||||
static BOOL touch_file(LPCWSTR filename)
|
||||
|
|
Loading…
Reference in New Issue