From 10217fae299db3bf3dbce66de3dc0807c8c57322 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Sun, 24 Aug 2008 17:50:28 +0200 Subject: [PATCH] advapi32/tests: Remove duplicate test. --- dlls/advapi32/tests/service.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/dlls/advapi32/tests/service.c b/dlls/advapi32/tests/service.c index 4225e350e31..4e574b6b4b6 100644 --- a/dlls/advapi32/tests/service.c +++ b/dlls/advapi32/tests/service.c @@ -1234,18 +1234,6 @@ static void test_enum_svc(void) needed, &needed, &returned, NULL); HeapFree(GetProcessHeap(), 0, services); - /* Check if total is the same as active and inactive win32 services */ - todo_wine - ok(returned == (servicecountactive + servicecountinactive), - "Something wrong in the calculation\n"); - - /* Get the number of all services */ - EnumServicesStatusA(scm_handle, SERVICE_DRIVER | SERVICE_WIN32, SERVICE_STATE_ALL, - NULL, 0, &needed, &returned, NULL); - services = HeapAlloc(GetProcessHeap(), 0, needed); - EnumServicesStatusA(scm_handle, SERVICE_DRIVER | SERVICE_WIN32, SERVICE_STATE_ALL, - services, needed, &needed, &returned, NULL); - /* Check if total is the same as active and inactive win32 services */ todo_wine ok(returned == (servicecountactive + servicecountinactive),