summaryrefslogtreecommitdiff
path: root/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-28 17:55:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-28 18:26:57 +0200
commitc741633310db3e32e9e07c8e045d11b29f2db606 (patch)
tree72fea353149ad643a14f9d156eb60b68362302a8 /sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
parent40b9caf882554804d83c2423971ad8293d4cef62 (diff)
loplugin:salunicodeliteral: sal
Change-Id: I1b7c3f8de5b09c96e27aa9124096b00638afb3f3
Diffstat (limited to 'sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx')
-rw-r--r--sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx b/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
index 707034b3affa..6fca739125b0 100644
--- a/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
+++ b/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
@@ -30,7 +30,7 @@ void AppendChar::testAppendChar() {
rtl::OUStringBuffer s;
s.append('a');
CPPUNIT_ASSERT_EQUAL(sal_Int32(1), s.getLength());
- CPPUNIT_ASSERT_EQUAL(sal_Unicode('a'), s[0]);
+ CPPUNIT_ASSERT_EQUAL(u'a', s[0]);
}
} }