tools/qa/cppunit/test_json_writer.cxx |   12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

New commits:
commit 57fddf3e644c99715fb3bdf2e107aa2495c0ecf9
Author:     Chris Sherlock <chris.sherloc...@gmail.com>
AuthorDate: Sun Jun 19 20:38:44 2022 +1000
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Tue Aug 9 15:28:30 2022 +0200

    tools: json writer test does not need to use test::BootstrapFixture
    
    Change-Id: Iea7fa63ca7a3208d065ac2960998041672fc8d7c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136231
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/tools/qa/cppunit/test_json_writer.cxx 
b/tools/qa/cppunit/test_json_writer.cxx
index 188b22f9c617..2e0706605745 100644
--- a/tools/qa/cppunit/test_json_writer.cxx
+++ b/tools/qa/cppunit/test_json_writer.cxx
@@ -9,24 +9,18 @@
 
 #include <sal/config.h>
 
+#include <cppunit/TestFixture.h>
 #include <cppunit/extensions/HelperMacros.h>
+
 #include <o3tl/deleter.hxx>
-#include <test/bootstrapfixture.hxx>
 #include <rtl/ustring.hxx>
 #include <tools/json_writer.hxx>
 
 namespace
 {
-class JsonWriterTest : public test::BootstrapFixture
+class JsonWriterTest : public CppUnit::TestFixture
 {
 public:
-    JsonWriterTest()
-        : BootstrapFixture(true, false)
-    {
-    }
-
-    virtual void setUp() override {}
-
     void test1();
     void test2();
     void testArray();

Reply via email to