Module: wine Branch: master Commit: 5fb9b19218dacd70366d15cf82f13fec3ec8a3e3 URL: https://gitlab.winehq.org/wine/wine/-/commit/5fb9b19218dacd70366d15cf82f13fe...
Author: Eric Pouech epouech@codeweavers.com Date: Mon Jun 10 11:49:04 2024 +0200
quartz/tests: Fix typo in tests.
Signed-off-by: Eric Pouech epouech@codeweavers.com
---
dlls/quartz/tests/filtergraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/quartz/tests/filtergraph.c b/dlls/quartz/tests/filtergraph.c index df1db0cfed6..c3dcfb803c2 100644 --- a/dlls/quartz/tests/filtergraph.c +++ b/dlls/quartz/tests/filtergraph.c @@ -46,7 +46,7 @@ static WCHAR *create_file(const WCHAR *name, const char *data, DWORD size) ok(file != INVALID_HANDLE_VALUE, "Failed to create file %s, error %lu.\n", wine_dbgstr_w(pathW), GetLastError()); WriteFile(file, data, size, &written, NULL); - ok(written = size, "Failed to write file data, error %lu.\n", GetLastError()); + ok(written == size, "Failed to write file data, error %lu.\n", GetLastError()); CloseHandle(file);
return pathW;