From a6d584cec9f3e22942c964e5c99e234a213bb7a3 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Tue, 17 Feb 2009 15:42:09 +0000 Subject: [PATCH] inetcomm/tests: Object is a static singleton on win95. --- dlls/inetcomm/tests/mimeintl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/inetcomm/tests/mimeintl.c b/dlls/inetcomm/tests/mimeintl.c index e49567daeaf..563943f663b 100644 --- a/dlls/inetcomm/tests/mimeintl.c +++ b/dlls/inetcomm/tests/mimeintl.c @@ -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);