diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-10-06 09:42:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-10-07 00:47:20 +0200 |
commit | e0c33ec15f53a01fa3ee07489871bbe09bb5c9c3 (patch) | |
tree | 1afe391a2b4bf9eda13de043658941060cb401c2 /test/qa/cppunit | |
parent | 9e3da252c361b3e2b04a2df7a3ae2a5177b37713 (diff) |
loplugin:ostr: automatic rewrite
Change-Id: I2d09b2b83e1b50493ec88d0b2c323a83c0c86395
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157647
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'test/qa/cppunit')
-rw-r--r-- | test/qa/cppunit/dialog.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/qa/cppunit/dialog.cxx b/test/qa/cppunit/dialog.cxx index c69f41b58d7c..eb6996fa68f4 100644 --- a/test/qa/cppunit/dialog.cxx +++ b/test/qa/cppunit/dialog.cxx @@ -16,7 +16,7 @@ * otherwise block the test potentially indefinitely */ CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, SelfTestIncorrectDialog) { - load(u"private:factory/swriter"); + load(u"private:factory/swriter"_ustr); auto dialogWaiter = awaitDialog(u"This Dialog Does Not Exist", [](Dialog&) { CPPUNIT_ASSERT_MESSAGE("This code should not be reached", false); @@ -33,7 +33,7 @@ CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, SelfTestIncorrectDialog) * subsequent tests if caught -- especially that DialogWaiter::waitEndDialog() won't timeout. */ CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, SelfTestThrowInDialogCallback) { - load(u"private:factory/swriter"); + load(u"private:factory/swriter"_ustr); class DummyException : public std::exception { @@ -48,7 +48,7 @@ CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, SelfTestThrowInDialogCallback) // Checks timeout if dialog does not show up as expected CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, SelfTestNoDialog) { - load(u"private:factory/swriter"); + load(u"private:factory/swriter"_ustr); auto dialogWaiter = awaitDialog(u"This Dialog Did Not Show Up", [](Dialog&) { CPPUNIT_ASSERT_MESSAGE("This code should not be reached", false); |