diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-28 13:02:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-28 13:02:18 +0100 |
commit | 788b778d168f5de13479eb9a83369810a06232fb (patch) | |
tree | ae749e769e20d0e209c32c53b8548a8ea627e479 /i18npool | |
parent | 7b75dc8ccca61988392779d4c61eef15f1211c16 (diff) |
sal_Int32 as long strikes again
Change-Id: I26abf6d0e102712f76977e0763c4a672434a1325
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/qa/cppunit/test_breakiterator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/qa/cppunit/test_breakiterator.cxx b/i18npool/qa/cppunit/test_breakiterator.cxx index a2820d2057da..6e758f68fd18 100644 --- a/i18npool/qa/cppunit/test_breakiterator.cxx +++ b/i18npool/qa/cppunit/test_breakiterator.cxx @@ -809,7 +809,7 @@ void TestBreakIterator::testLao() i18n::Boundary aBounds = m_xBreak->getWordBoundary(aTest, 0, aLocale, i18n::WordType::DICTIONARY_WORD, true); - CPPUNIT_ASSERT_EQUAL(0, aBounds.startPos); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(0), aBounds.startPos); //TODO: Expected: 5 | Actual : 12 //CPPUNIT_ASSERT_EQUAL(5, aBounds.endPos); |