diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-11-19 13:25:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-11-19 17:29:09 +0100 |
commit | db9104a366a57cc66f87467af8a329772d3f3b52 (patch) | |
tree | 86eef17344e36c52d4abfe67f6454c130a141508 /tools/qa/cppunit/test_guid.cxx | |
parent | 156e7eafd76c819225a8bd77d0cf48fe19560c5f (diff) |
Extended loplugin:ostr: tools
Change-Id: I70df74d005c7fca14b1bcb70f4870023bd3af4a1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159668
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'tools/qa/cppunit/test_guid.cxx')
-rw-r--r-- | tools/qa/cppunit/test_guid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qa/cppunit/test_guid.cxx b/tools/qa/cppunit/test_guid.cxx index 177e58591ba7..f16eb389319c 100644 --- a/tools/qa/cppunit/test_guid.cxx +++ b/tools/qa/cppunit/test_guid.cxx @@ -21,7 +21,7 @@ public: { sal_uInt8 pArray[16] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; Guid aGuid(pArray); - CPPUNIT_ASSERT_EQUAL(OString("{01020304-0506-0708-090A-0B0C0D0E0F10}"), aGuid.getString()); + CPPUNIT_ASSERT_EQUAL("{01020304-0506-0708-090A-0B0C0D0E0F10}"_ostr, aGuid.getString()); } void testCreate() |