diff options
Diffstat (limited to 'sc/qa/unit/opencl-test.cxx')
-rw-r--r-- | sc/qa/unit/opencl-test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx index 2cb7667751cf..abf87e6b33bd 100644 --- a/sc/qa/unit/opencl-test.cxx +++ b/sc/qa/unit/opencl-test.cxx @@ -738,10 +738,10 @@ void ScOpenCLTest::testSystematic() double fExcel = rDoc.GetValue(ScAddress(j, nBVertBegin + (i - nAVertBegin), 0)); const OString sFailedMessage = - OString(static_cast<sal_Char>('A'+j)) + + OStringChar(static_cast<sal_Char>('A'+j)) + OString::number(i+1) + "!=" + - OString(static_cast<sal_Char>('A'+j)) + + OStringChar(static_cast<sal_Char>('A'+j)) + OString::number(nBVertBegin+(i-nAVertBegin)+1); CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(sFailedMessage.getStr(), fExcel, fLibre, 1e-10); } |