diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-02-02 17:19:04 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-02-02 17:41:58 +0100 |
commit | 22371e422ef1f9d3dc24db0ae7dc94490a7e85e3 (patch) | |
tree | 96ea91fefce1281672b1f00cbdc6905b57f923ed /sc | |
parent | cfbd57de5ed82252075987168904e8ae8c4ed9a8 (diff) |
fix tdf#43700 test case code
Change-Id: I2bb6aa16e7f3a752208b139527807e03bd962eb7
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/bugfix-test.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/qa/unit/bugfix-test.cxx b/sc/qa/unit/bugfix-test.cxx index a9d40bb93687..51a74d0f95e2 100644 --- a/sc/qa/unit/bugfix-test.cxx +++ b/sc/qa/unit/bugfix-test.cxx @@ -131,17 +131,17 @@ void ScFiltersTest::testTdf36933() void ScFiltersTest::testTdf43700() { - ScDocShellRef xDocSh = loadDoc("fdo47300test.", ODS); + ScDocShellRef xDocSh = loadDoc("fdo43700test.", ODS); xDocSh->DoHardRecalc(true); - CPPUNIT_ASSERT_MESSAGE("Failed to load fdo47300test.*", xDocSh.Is()); + CPPUNIT_ASSERT_MESSAGE("Failed to load fdo43700test.*", xDocSh.Is()); ScDocument& rDoc = xDocSh->GetDocument(); OUString aCSVFileName; //test hard recalc: document has an incorrect cached formula result //hard recalc should have updated to the correct result - createCSVPath(OUString("fdo47300test."), aCSVFileName); + createCSVPath(OUString("fdo43700test."), aCSVFileName); testFile(aCSVFileName, rDoc, 0); xDocSh->DoClose(); |