rename net to network
[reactos.git] / reactos / drivers / net / tcpip / tests / tests / tigetprotocolnumber.c
diff --git a/reactos/drivers/net/tcpip/tests/tests/tigetprotocolnumber.c b/reactos/drivers/net/tcpip/tests/tests/tigetprotocolnumber.c
deleted file mode 100644 (file)
index 1fe2164..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <roscfg.h>
-#include "../../include/precomp.h"
-#include "regtests.h"
-
-static void RunTest() {
-    UNICODE_STRING Str;
-    int Proto;
-    RtlInitUnicodeString( &Str, L"1" );
-    TiGetProtocolNumber( &Str, (PULONG)&Proto );
-    _AssertEqualValue(1, Proto);
-}
-
-_Dispatcher(TigetprotocolnumberTest, "TiGetProtocolNumber");