summaryrefslogtreecommitdiff
path: root/xmlsecurity/qa
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-16 17:14:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-17 16:12:02 +0000
commit83d2c5180d255532b7cdf5d2922fee1cf056eef3 (patch)
tree7a58db4a6723008afe96e17185a69aa17a864e1f /xmlsecurity/qa
parent87707670c993794ab12b0fad0f048f11429269c2 (diff)
Adapt to no-longer explicit OUStringLiteral ctor
...from previous commit Change-Id: I062b7cd212c17e7eb5274476e6859228d0477c7f Reviewed-on: https://gerrit.libreoffice.org/32098 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmlsecurity/qa')
-rw-r--r--xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx b/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx
index 51fc15ebc407..507b3e5ea09e 100644
--- a/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx
+++ b/xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx
@@ -369,9 +369,9 @@ void PDFSigningTest::testGood()
const std::initializer_list<OUStringLiteral> aNames =
{
// We failed to determine if this is good or bad.
- OUStringLiteral("good-non-detached.pdf"),
+ "good-non-detached.pdf",
// Boolean value for dictionary key caused read error.
- OUStringLiteral("dict-bool.pdf"),
+ "dict-bool.pdf",
};
for (const auto& rName : aNames)
@@ -388,13 +388,13 @@ void PDFSigningTest::testTokenize()
const std::initializer_list<OUStringLiteral> aNames =
{
// We looped on this broken input.
- OUStringLiteral("no-eof.pdf"),
+ "no-eof.pdf",
// ']' in a name token was mishandled.
- OUStringLiteral("name-bracket.pdf"),
+ "name-bracket.pdf",
// %%EOF at the end wasn't followed by a newline.
- OUStringLiteral("noeol.pdf"),
+ "noeol.pdf",
// File that's intentionally smaller than 1024 bytes.
- OUStringLiteral("small.pdf"),
+ "small.pdf",
};
for (const auto& rName : aNames)