[4/4] ws2_32/tests: Fix some test message typos

Bruno Jesus 00cpxxx at gmail.com
Fri Dec 27 09:49:27 CST 2013


-------------- next part --------------

---
 dlls/ws2_32/tests/sock.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c
index ce6b186..f13e8a4 100644
--- a/dlls/ws2_32/tests/sock.c
+++ b/dlls/ws2_32/tests/sock.c
@@ -2210,7 +2210,7 @@ static void test_WSADuplicateSocket(void)
        IPPROTO_TCP, info.iProtocol);
     ok(info.iAddressFamily == AF_INET, "expected family %d, received %d\n",
        AF_INET, info.iProtocol);
-    ok(info.iSocketType == SOCK_STREAM, "expected protocol %d, received %d\n",
+    ok(info.iSocketType == SOCK_STREAM, "expected type %d, received %d\n",
        SOCK_STREAM, info.iSocketType);
 
     dupsock = WSASocketA(0, 0, 0, &info, 0, 0);
@@ -2232,7 +2232,7 @@ static void test_WSADuplicateSocket(void)
        IPPROTO_UDP, info.iProtocol);
     ok(info.iAddressFamily == AF_INET, "expected family %d, received %d\n",
        AF_INET, info.iProtocol);
-    ok(info.iSocketType == SOCK_DGRAM, "expected protocol %d, received %d\n",
+    ok(info.iSocketType == SOCK_DGRAM, "expected type %d, received %d\n",
        SOCK_DGRAM, info.iSocketType);
 
     memset(&addr, 0, sizeof(addr));
-- 
1.8.3.2


More information about the wine-patches mailing list