From 7fb21cda4e354bc6714318eca4aead895356b441 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Mon, 17 Oct 2022 16:51:46 +0200 Subject: 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 --- sc/qa/unit/parallelism.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc/qa') 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(); } -- cgit