Commit a8397e30 authored by Vitaly Lipatov's avatar Vitaly Lipatov Committed by Alexandre Julliard

ole32/tests: Do not compare returned by DeleteFile value with TRUE.

parent f4a8ba95
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment