crypt32/tests: Fix a typos

Andrey Gusev andrey.goosev at gmail.com
Sat Jan 4 05:35:36 CST 2014


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20140104/f3ae5bc3/attachment.html>
-------------- next part --------------
From fdd1af188005c0b22e026988f21bd86d274b68cf Mon Sep 17 00:00:00 2001
Message-Id: <fdd1af188005c0b22e026988f21bd86d274b68cf.1388832761.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Sat, 4 Jan 2014 12:47:59 +0200
Subject: crypt32/tests: Fix a typos

---
 dlls/crypt32/tests/encode.c | 2 +-
 dlls/crypt32/tests/store.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/crypt32/tests/encode.c b/dlls/crypt32/tests/encode.c
index ad38fd5..88d90e9 100644
--- a/dlls/crypt32/tests/encode.c
+++ b/dlls/crypt32/tests/encode.c
@@ -973,7 +973,7 @@ static void test_encodeUnicodeName(DWORD dwEncoding)
     {
         ok(size == sizeof(encodedTwoRDNs), "Unexpected size %d\n", size);
         ok(!memcmp(buf, encodedTwoRDNs, size),
-         "Unexpected value for re-endoded two RDN array\n");
+         "Unexpected value for re-encoded two RDN array\n");
         LocalFree(buf);
     }
     /* Unicode names infer the type for CERT_RDN_ANY_TYPE */
diff --git a/dlls/crypt32/tests/store.c b/dlls/crypt32/tests/store.c
index 1fa3ffa..a416a39 100644
--- a/dlls/crypt32/tests/store.c
+++ b/dlls/crypt32/tests/store.c
@@ -130,7 +130,7 @@ static void _test_store_is_empty(unsigned line, HCERTSTORE store)
     const CERT_CONTEXT *cert;
 
     cert = CertEnumCertificatesInStore(store, NULL);
-    ok_(__FILE__,line)(!cert && GetLastError() == CRYPT_E_NOT_FOUND, "store is not epmty\n");
+    ok_(__FILE__,line)(!cert && GetLastError() == CRYPT_E_NOT_FOUND, "store is not empty\n");
 }
 
 static void testMemStore(void)
-- 
1.8.1.2


More information about the wine-patches mailing list