diff options
author | Vincent Richard <[email protected]> | 2010-12-10 16:24:06 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2010-12-10 16:24:06 +0000 |
commit | 90ad8c91548154f5f3e7041e2fae7462d9cb5167 (patch) | |
tree | 56ccf2ae3ac7d71e140a6adf78bbc2107283b37e | |
parent | No extra space between ':' and '<' in MAIL FROM and RCPT TO. Wait for server ... (diff) | |
download | vmime-90ad8c91548154f5f3e7041e2fae7462d9cb5167.tar.gz vmime-90ad8c91548154f5f3e7041e2fae7462d9cb5167.zip |
Fixed unit test after bug fix.
-rw-r--r-- | tests/net/smtp/SMTPTransportTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/net/smtp/SMTPTransportTest.cpp b/tests/net/smtp/SMTPTransportTest.cpp index 5015552a..6552f9e6 100644 --- a/tests/net/smtp/SMTPTransportTest.cpp +++ b/tests/net/smtp/SMTPTransportTest.cpp @@ -165,7 +165,7 @@ public: } else if (cmd == "MAIL") { - VASSERT_EQ("MAIL", std::string("MAIL FROM: <[email protected]>"), line); + VASSERT_EQ("MAIL", std::string("MAIL FROM:<[email protected]>"), line); localSend("250 OK\r\n"); } |