diff options
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 | ||