summaryrefslogtreecommitdiffstats
path: root/sal/qa/rtl/strings/test_oustring_startswith.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/qa/rtl/strings/test_oustring_startswith.cxx')
-rw-r--r--sal/qa/rtl/strings/test_oustring_startswith.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/qa/rtl/strings/test_oustring_startswith.cxx b/sal/qa/rtl/strings/test_oustring_startswith.cxx
index 3a8a15a03377..43d4c9e921c4 100644
--- a/sal/qa/rtl/strings/test_oustring_startswith.cxx
+++ b/sal/qa/rtl/strings/test_oustring_startswith.cxx
@@ -30,9 +30,9 @@ CPPUNIT_TEST_SUITE_REGISTRATION(test::oustring::StartsWith);
void test::oustring::StartsWith::startsWith()
{
- CPPUNIT_ASSERT( rtl::OUString( "foobar" ).startsWith( "foo" ));
- CPPUNIT_ASSERT( !rtl::OUString( "foo" ).startsWith( "foobar" ));
- CPPUNIT_ASSERT( !rtl::OUString( "foobar" ).startsWith( "oo" ));
+ CPPUNIT_ASSERT( OUString( "foobar" ).startsWith( "foo" ));
+ CPPUNIT_ASSERT( !OUString( "foo" ).startsWith( "foobar" ));
+ CPPUNIT_ASSERT( !OUString( "foobar" ).startsWith( "oo" ));
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */