diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-01-26 00:20:22 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-01-26 00:49:17 +0100 |
commit | ee715db9dbeb3a02c254e375eab57d6a5fc51a13 (patch) | |
tree | 81e172afa49a72ec8044bbd12d0fd7b9987f052f | |
parent | 0367a2679b480cbe03c41b02990f11f9aaf816e9 (diff) |
this test case must be changed a bit
The old way was just plain wrong. Just test if the string is empty.
Change-Id: I4eba5e6941da5904c8ff99ab48ae5bef0d02e14e
-rw-r--r-- | sc/qa/unit/subsequent_filters-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx index 6182bf32a42a..ca1d4e4414e5 100644 --- a/sc/qa/unit/subsequent_filters-test.cxx +++ b/sc/qa/unit/subsequent_filters-test.cxx @@ -517,7 +517,7 @@ void ScFiltersTest::testCachedMatrixFormulaResultsODS() //Import works around this by setting these cells as text cells so that //the blank text is used for display instead of the number 0. //If this is working properly, the following cell should NOT have value data. - // CPPUNIT_ASSERT(!pDoc->GetCell(ScAddress(3,0,2))->HasValueData()); + CPPUNIT_ASSERT_EQUAL(pDoc->GetString(3,0,2), OUString()); // fdo#59293 with cached value import error formulas require special // treatment |