summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-11-15 19:03:56 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-11-18 17:25:39 -0500
commitaf7f6edd2fa36c8e28c43e707e30361fa3f7bf25 (patch)
tree4d493cc5103f407865b11b7e0aed148b2fd293f6 /sc/qa
parent0df2c02d4f40b627f17d68d80a18999f4f40aea2 (diff)
Handle external functions (add-ins).
Unfortunately we can't test this piece easily just yet. Enabling add-in functions would mess up the function list which is unit-tested and thus fail if we enable add-ins in unit test. Change-Id: Ieda5e5560d4c7e68d7c6272c5d85f2ac63bd4ee4
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/unit/ucalc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 294dd6597338..9eef1eec9d05 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -2552,7 +2552,7 @@ void Test::testFunctionLists()
for (sal_uInt32 j = 0; j < nFuncCount; ++j)
{
const formula::IFunctionDescription* pFunc = pCat->getFunction(j);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("Unexpected function name", pFunc->getFunctionName(), OUString::createFromAscii(aTests[i].Functions[j]));
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("Unexpected function name", OUString::createFromAscii(aTests[i].Functions[j]), pFunc->getFunctionName());
}
}
}