Francois Gouget : dssenh/tests: add a trailing '\n' to a couple of ok() calls.

Alexandre Julliard julliard at winehq.org
Tue Aug 21 13:40:19 CDT 2012


Module: wine
Branch: master
Commit: b37c3d840d138cc741d7fb81caaae1b2641c2175
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b37c3d840d138cc741d7fb81caaae1b2641c2175

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Aug 21 13:32:14 2012 +0200

dssenh/tests: add a trailing '\n' to a couple of ok() calls.

---

 dlls/dssenh/tests/dssenh.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dssenh/tests/dssenh.c b/dlls/dssenh/tests/dssenh.c
index 6576f4d..a0ba903 100644
--- a/dlls/dssenh/tests/dssenh.c
+++ b/dlls/dssenh/tests/dssenh.c
@@ -861,7 +861,7 @@ static void test_signhash_array(HCRYPTPROV hProv, const struct signature_test *t
         ok(result, "Failed to return hash value.\n");
 
         /* Compare hashes to ensure they are the same */
-        ok(hashLen1 ==  hashLen2, "Hash lengths were not the same.");
+        ok(hashLen1 ==  hashLen2, "Hash lengths were not the same.\n");
         ok(!memcmp(hashValue1, hashValue2, hashLen2), "Hashes were not identical.\n");
 
         /* Sign hash 1 */
@@ -883,7 +883,7 @@ static void test_signhash_array(HCRYPTPROV hProv, const struct signature_test *t
         /* Compare signatures to ensure they are both different, because every DSS signature
            should be different even if the input hash data is identical */
         ok(memcmp(signValue1, signValue2, signLen2), "Expected two different signatures from "
-            "the same hash input.");
+            "the same hash input.\n");
 
         result = CryptExportKey(privKey, 0, PUBLICKEYBLOB, 0, NULL, &pubKeyLen);
         ok(result, "Failed to acquire public key length, got %x\n", GetLastError());




More information about the wine-cvs mailing list