summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--comphelper/qa/string/test_string.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/qa/string/test_string.cxx b/comphelper/qa/string/test_string.cxx
index 3e30ad22f440..a290cb7c5e93 100644
--- a/comphelper/qa/string/test_string.cxx
+++ b/comphelper/qa/string/test_string.cxx
@@ -154,16 +154,16 @@ void TestString::testIndexOfL()
rtl::OString s1(RTL_CONSTASCII_STRINGPARAM("one two three"));
CPPUNIT_ASSERT_EQUAL(comphelper::string::indexOfL(s1,
- RTL_CONSTASCII_STRINGPARAM("one")), 0);
+ RTL_CONSTASCII_STRINGPARAM("one")), static_cast<sal_Int32>(0));
CPPUNIT_ASSERT_EQUAL(comphelper::string::indexOfL(s1,
- RTL_CONSTASCII_STRINGPARAM("two")), 4);
+ RTL_CONSTASCII_STRINGPARAM("two")), static_cast<sal_Int32>(4));
CPPUNIT_ASSERT_EQUAL(comphelper::string::indexOfL(s1,
- RTL_CONSTASCII_STRINGPARAM("four")), -1);
+ RTL_CONSTASCII_STRINGPARAM("four")), static_cast<sal_Int32>(-1));
CPPUNIT_ASSERT_EQUAL(comphelper::string::indexOfL(s1,
- RTL_CONSTASCII_STRINGPARAM("two"), 5), -1);
+ RTL_CONSTASCII_STRINGPARAM("two"), 5), static_cast<sal_Int32>(-1));
}
using namespace ::com::sun::star;