diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-10-17 16:51:46 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-10-17 18:03:00 +0200 |
commit | 7fb21cda4e354bc6714318eca4aead895356b441 (patch) | |
tree | 5c73342678337789cf228d40089ee4aa98b36ea1 /sc/qa | |
parent | 12a438021ae8d8ff0968764ddbe68e878f506f34 (diff) |
CppunitTest_sc_parallelism: inherit from BootstrapFixture
no need to inherit from ScBootstrapFixture, this class doesn't
use anything from there
Change-Id: Ib3d2bfa2161c05a838d1c7a554a3d3e670e9c4a8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141465
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/parallelism.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/parallelism.cxx b/sc/qa/unit/parallelism.cxx index 5fc47c23304d..eb084b95e516 100644 --- a/sc/qa/unit/parallelism.cxx +++ b/sc/qa/unit/parallelism.cxx @@ -22,7 +22,7 @@ using namespace css; using namespace css::uno; -class ScParallelismTest : public ScBootstrapFixture +class ScParallelismTest : public test::BootstrapFixture { public: ScParallelismTest(); @@ -85,7 +85,6 @@ private: }; ScParallelismTest::ScParallelismTest() - : ScBootstrapFixture( "sc/qa/unit/data" ) { } @@ -169,6 +168,7 @@ void ScParallelismTest::tearDown() m_xDocShell->DoClose(); m_xDocShell.clear(); + test::BootstrapFixture::tearDown(); } |