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

This commit is contained in:
Vitaly Lipatov 2006-02-23 16:31:59 +03:00 committed by Alexandre Julliard
parent f4a8ba9548
commit a8397e307a
1 changed files with 1 additions and 1 deletions

View File

@ -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)