From 80a48578c6d54870d9007986e8f1bd74c533dddd Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Thu, 29 Jan 2009 17:19:20 -0800 Subject: [PATCH] inetmib1: Remove a test that's no longer true on Windows Vista. --- dlls/inetmib1/tests/main.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dlls/inetmib1/tests/main.c b/dlls/inetmib1/tests/main.c index 27ba9e510e6..13613fd9d42 100644 --- a/dlls/inetmib1/tests/main.c +++ b/dlls/inetmib1/tests/main.c @@ -231,13 +231,6 @@ static void testQuery(void) "expected ASN_INTEGER, got %02x\n", vars2[1].value.asnType); ok(vars2[2].value.asnType == ASN_INTEGER, "expected ASN_INTEGER, got %02x\n", vars2[2].value.asnType); - /* Check that the operational status of an interface correctly - * follows the MIB2 definition of it, rather than the values - * defined for IPHlpApi's dwOperStatus field. - */ - ok(vars2[2].value.asnValue.unsigned32 <= 2, - "expected a value of 0, 1, or 2, got %u\n", - vars2[2].value.asnValue.unsigned32); } else if (noChange) skip("no change in OID, no MIB2 IF table implementation\n");