diff --git a/qa/unittests/eeschema/test_netlist_exporter_spice.cpp b/qa/unittests/eeschema/test_netlist_exporter_spice.cpp index 6ee3d20457..2b9db2ef26 100644 --- a/qa/unittests/eeschema/test_netlist_exporter_spice.cpp +++ b/qa/unittests/eeschema/test_netlist_exporter_spice.cpp @@ -85,7 +85,7 @@ public: { // Our simulator is actually Ngspice. NGSPICE* ngspice = dynamic_cast( m_simulator.get() ); - BOOST_TEST_CHECK( ngspice ); + BOOST_REQUIRE( ngspice ); ngspice->SetReporter( m_reporter.get() ); @@ -158,7 +158,7 @@ public: maxError = aMaxRelError; } - BOOST_REQUIRE_LE( abs( yVector[i] - refValue ), maxError ); + BOOST_CHECK_LE( abs( yVector[i] - refValue ), maxError ); } } }