From 99d919c6d7cad9c41536f7d467ac86496af326fd Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Mon, 21 Apr 2014 20:13:17 +0200 Subject: [PATCH] Fixed unit test. --- tests/net/imap/IMAPCommandTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/net/imap/IMAPCommandTest.cpp b/tests/net/imap/IMAPCommandTest.cpp index 8183dfa7..00054781 100644 --- a/tests/net/imap/IMAPCommandTest.cpp +++ b/tests/net/imap/IMAPCommandTest.cpp @@ -82,7 +82,7 @@ VMIME_TEST_SUITE_BEGIN(IMAPCommandTest) VASSERT_NOT_NULL("Not null", cmd); VASSERT_EQ("Text", "LOGIN username password", cmd->getText()); - VASSERT_EQ("Trace Text", "LOGIN ", cmd->getTraceText()); + VASSERT_EQ("Trace Text", "LOGIN {username} {password}", cmd->getTraceText()); } void testAUTHENTICATE()