Francois Gouget : crypt32: Add missing '\n' to ok() call.
Module: wine Branch: master Commit: 021c4dba179d56c0c4d11e401bd679c1d330f026 URL: http://source.winehq.org/git/wine.git/?a=commit;h=021c4dba179d56c0c4d11e401b... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Jun 14 11:21:30 2007 +0200 crypt32: Add missing '\n' to ok() call. --- dlls/crypt32/tests/encode.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/crypt32/tests/encode.c b/dlls/crypt32/tests/encode.c index 387df64..5f79639 100644 --- a/dlls/crypt32/tests/encode.c +++ b/dlls/crypt32/tests/encode.c @@ -4846,7 +4846,7 @@ static void test_decodePKCSAttributes(DWORD dwEncoding) ok(attributes->rgAttr[0].cValue == 0, "Expected no attributes, got %d\n", attributes->rgAttr[0].cValue); ok(!strcmp(attributes->rgAttr[1].pszObjId, "1.5.6"), - "Expected 1.5.6, got %s", attributes->rgAttr[1].pszObjId); + "Expected 1.5.6, got %s\n", attributes->rgAttr[1].pszObjId); ok(attributes->rgAttr[1].cValue == 1, "Expected 1 attribute, got %d\n", attributes->rgAttr[1].cValue); ok(attributes->rgAttr[1].rgValue[0].cbData == ints[0].encoded[1] + 2,
participants (1)
-
Alexandre Julliard