mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
inetcomm/tests: Object is a static singleton on win95.
This commit is contained in:
parent
bd69c2e95a
commit
a6d584cec9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user