diff --git a/Processes/OnShellCheck/testOnShellCheck.cc b/Processes/OnShellCheck/testOnShellCheck.cc
index f67272bd238ea04b7af0ed98d4859f7de5160440..ca2c564553b55d078907379c7067881d0071336f 100644
--- a/Processes/OnShellCheck/testOnShellCheck.cc
+++ b/Processes/OnShellCheck/testOnShellCheck.cc
@@ -83,9 +83,9 @@ TEST_CASE("OnShellCheck", "[processes]") {
       auto const Plab = corsika::geometry::FourVector(p.GetEnergy(), p.GetMomentum());
       auto const m_kinetic = Plab.GetNorm();
       if (i == 0)
-        REQUIRE(m_kinetic / particles::PiPlus::GetMass() == Approx(1));
+        CHECK(m_kinetic / particles::PiPlus::GetMass() == Approx(1));
       else if (i == 1)
-        REQUIRE_FALSE(m_kinetic / particles::PiMinus::GetMass() == Approx(1));
+        CHECK_FALSE(m_kinetic / particles::PiMinus::GetMass() == Approx(1));
     }
   }
 }