summaryrefslogtreecommitdiff
path: root/comphelper/qa/string/test_string.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/qa/string/test_string.cxx')
-rw-r--r--comphelper/qa/string/test_string.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/qa/string/test_string.cxx b/comphelper/qa/string/test_string.cxx
index 32a3e7c45e2f..8e4910cc6085 100644
--- a/comphelper/qa/string/test_string.cxx
+++ b/comphelper/qa/string/test_string.cxx
@@ -75,13 +75,13 @@ void TestString::testDecimalStringToNumber()
void TestString::testIsdigitAsciiString()
{
OString s1("1234");
- CPPUNIT_ASSERT_EQUAL(comphelper::string::isdigitAsciiString(s1), true);
+ CPPUNIT_ASSERT_EQUAL(true, comphelper::string::isdigitAsciiString(s1));
OString s2("1A34");
- CPPUNIT_ASSERT_EQUAL(comphelper::string::isdigitAsciiString(s2), false);
+ CPPUNIT_ASSERT_EQUAL(false, comphelper::string::isdigitAsciiString(s2));
OString s3;
- CPPUNIT_ASSERT_EQUAL(comphelper::string::isdigitAsciiString(s3), true);
+ CPPUNIT_ASSERT_EQUAL(true, comphelper::string::isdigitAsciiString(s3));
}
using namespace ::com::sun::star;