inetcomm/tests: Object is a static singleton on win95.

This commit is contained in:
Huw Davies 2009-02-17 15:42:09 +00:00 committed by Alexandre Julliard
parent bd69c2e95a
commit a6d584cec9

View File

@ -52,7 +52,9 @@ static void test_create(void)
/* test to show that the object is a singleton with
a reference held by the dll. */
ref = IMimeInternational_Release(internat2);
ok(ref == 2, "got %d\n", ref);
ok(ref == 2 ||
ref == 1, /* win95 - object is a static singleton */
"got %d\n", ref);
ref = IMimeInternational_Release(internat);
ok(ref == 1, "got %d\n", ref);