sc/qa/unit/datatransformation_test.cxx |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

New commits:
commit 9932e200b038bacc6c2a188896074bffa5f973b1
Author:     Xisco Fauli <xiscofa...@libreoffice.org>
AuthorDate: Mon Oct 17 13:17:13 2022 +0200
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Mon Oct 17 15:58:20 2022 +0200

    CppunitTest_sc_datatransformation: inherit from BootstrapFixture
    
    no need to inherit from ScBootstrapFixture, this class doesn't
    use anything from there
    
    Change-Id: Id3cf385c6ff1d94bfe93b855780e70a4d8e8d0a7
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141453
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org>

diff --git a/sc/qa/unit/datatransformation_test.cxx 
b/sc/qa/unit/datatransformation_test.cxx
index 37fc1a0f3711..9e9f66e4655a 100644
--- a/sc/qa/unit/datatransformation_test.cxx
+++ b/sc/qa/unit/datatransformation_test.cxx
@@ -16,7 +16,7 @@
 #include <svl/numformat.hxx>
 #include <tools/time.hxx>
 
-class ScDataTransformationTest : public ScBootstrapFixture
+class ScDataTransformationTest : public test::BootstrapFixture
 {
 public:
 
@@ -1001,14 +1001,13 @@ void ScDataTransformationTest::testGetSecond()
 }
 
 ScDataTransformationTest::ScDataTransformationTest() :
-    ScBootstrapFixture( "sc/qa/unit/data/dataprovider" ),
     m_pDoc(nullptr)
 {
 }
 
 void ScDataTransformationTest::setUp()
 {
-    ScBootstrapFixture::setUp();
+    BootstrapFixture::setUp();
 
     ScDLL::Init();
     m_xDocShell = new ScDocShell(
@@ -1026,7 +1025,7 @@ void ScDataTransformationTest::tearDown()
 {
     m_xDocShell->DoClose();
     m_xDocShell.clear();
-    ScBootstrapFixture::tearDown();
+    BootstrapFixture::tearDown();
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(ScDataTransformationTest);

Reply via email to