diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-06-30 17:36:55 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-06-30 17:36:55 +0200 |
commit | 241a446b0661b668e24e297753d4dfc762fb1fd4 (patch) | |
tree | 369cb9e48c6cb76a186d168b548385fcf1e3e053 /framework/src/domain/mime/tests/mailtemplatetest.cpp | |
parent | ab912af8158028206cf43b0a6ca0eac8eef040f4 (diff) | |
download | kube-241a446b0661b668e24e297753d4dfc762fb1fd4.tar.gz kube-241a446b0661b668e24e297753d4dfc762fb1fd4.zip |
Reply to signed messages.
Diffstat (limited to 'framework/src/domain/mime/tests/mailtemplatetest.cpp')
-rw-r--r-- | framework/src/domain/mime/tests/mailtemplatetest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/src/domain/mime/tests/mailtemplatetest.cpp b/framework/src/domain/mime/tests/mailtemplatetest.cpp index 18f315f1..4dc8e2bd 100644 --- a/framework/src/domain/mime/tests/mailtemplatetest.cpp +++ b/framework/src/domain/mime/tests/mailtemplatetest.cpp | |||
@@ -36,6 +36,7 @@ static QString normalize(const QString &s) | |||
36 | auto text = s; | 36 | auto text = s; |
37 | text.replace(">", ""); | 37 | text.replace(">", ""); |
38 | text.replace("\n", ""); | 38 | text.replace("\n", ""); |
39 | text.replace("=", ""); | ||
39 | text.replace(" ", ""); | 40 | text.replace(" ", ""); |
40 | return text; | 41 | return text; |
41 | } | 42 | } |
@@ -87,9 +88,8 @@ private slots: | |||
87 | result = r; | 88 | result = r; |
88 | }); | 89 | }); |
89 | QTRY_VERIFY(result); | 90 | QTRY_VERIFY(result); |
90 | auto content = normalize(removeFirstLine(result->body())); | 91 | auto content = removeFirstLine(result->body()); |
91 | QVERIFY(!content.isEmpty()); | 92 | QVERIFY(!content.isEmpty()); |
92 | QEXPECT_FAIL("", "Not implemented yet.", Continue); | ||
93 | QVERIFY(content.contains("i noticed a new branch")); | 93 | QVERIFY(content.contains("i noticed a new branch")); |
94 | } | 94 | } |
95 | 95 | ||