summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorThorsten Behrens <thorsten.behrens@allotropia.de>2022-01-03 02:20:51 +0100
committerThorsten Behrens <thorsten.behrens@allotropia.de>2022-01-03 04:35:35 +0100
commit660e538ee77109bc3e7dff4491164d696e503abc (patch)
tree476a6dce33e53780e430667f43266c0407a1bbe5 /sc
parent73631b1bf52a2e6dd8a85d6fef36d754c15dcf82 (diff)
Disable broken part of ScFiltersTest2::testTdf126116
Fails since New Year with: Test name: ScFiltersTest2::testTdf126116 equality assertion failed - Expected: 03/03/21 - Actual : 03/03/22 Change-Id: Ic5c259e6bf1f184ceb7cf15e1ba7a83dac729c2f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127879 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/unit/subsequent_filters_test2.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/qa/unit/subsequent_filters_test2.cxx b/sc/qa/unit/subsequent_filters_test2.cxx
index c2e6725ae316..6055b286f330 100644
--- a/sc/qa/unit/subsequent_filters_test2.cxx
+++ b/sc/qa/unit/subsequent_filters_test2.cxx
@@ -1372,7 +1372,8 @@ void ScFiltersTest2::testTdf126116()
// Without the fix in place, this test would have failed with
// - Expected: 03/03/21
// - Actual : 03/03/2021
- CPPUNIT_ASSERT_EQUAL(OUString("03/03/" + aYear), rDoc.GetString(ScAddress(0, 0, 0)));
+ (void)
+ aYear; //CPPUNIT_ASSERT_EQUAL(OUString("03/03/" + aYear), rDoc.GetString(ScAddress(0, 0, 0)));
xDocSh->DoClose();
}