[pim/kdepim-addons] kmail/editorconvertertextplugins/markdown/autotests: Fix markdown test data
Volker Krause <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit ca3f100d7dbaa6900e74115d050585208027a99d by Volker Krause.
Committed on 15/08/2026 at 05:53.
Pushed by vkrause into branch 'master'.
Fix markdown test data
This got changed accidentally during a string literal conversion.
M +2 -2 kmail/editorconvertertextplugins/markdown/autotests/markdowncreateimagewidgettest.cpp
https://invent.kde.org/pim/kdepim-addons/-/commit/ca3f100d7dbaa6900e74115d050585208027a99d
diff --git a/kmail/editorconvertertextplugins/markdown/autotests/markdowncreateimagewidgettest.cpp b/kmail/editorconvertertextplugins/markdown/autotests/markdowncreateimagewidgettest.cpp
index 92ae5cadc..b9084a1c4 100644
--- a/kmail/editorconvertertextplugins/markdown/autotests/markdowncreateimagewidgettest.cpp
+++ b/kmail/editorconvertertextplugins/markdown/autotests/markdowncreateimagewidgettest.cpp
@@ -88,7 +88,7 @@ void MarkdownCreateImageWidgetTest::shouldGenerateLink()
QCOMPARE(w.linkStr(), u""_s);
mAlternateText->setText(u"alternate"_s);
- QCOMPARE(w.linkStr(), u";
+ QCOMPARE(w.linkStr(), u""_s);
}
void MarkdownCreateImageWidgetTest::shouldChangeState()
@@ -130,7 +130,7 @@ void MarkdownCreateImageWidgetTest::shouldAddSize()
mWidth->setValue(45);
mHeight->setValue(70);
- QCOMPARE(w.linkStr(), u";
+ QCOMPARE(w.linkStr(), u""_s);
mAlternateText->setText(QString());
QCOMPARE(w.linkStr(), u""_s);
}