Commit 6660d1dc authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

inetcomm/tests: AddRef on the stream doesn't return the ref count on win95.

parent a6d584ce
......@@ -324,7 +324,9 @@ static void test_CreateMessage(void)
IMimeMessage_Release(msg);
ref = IStream_AddRef(stream);
ok(ref == 2, "ref %d\n", ref);
ok(ref == 2 ||
broken(ref == 1), /* win95 */
"ref %d\n", ref);
IStream_Release(stream);
IStream_Release(stream);
......
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