From 600f3c03a386af3f1b13a51731883f26129d932c Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Tue, 12 Oct 2021 13:33:15 +0200
Subject: [PATCH] further relax QgsJetII unit test

---
 tests/modules/testQGSJetII.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/modules/testQGSJetII.cpp b/tests/modules/testQGSJetII.cpp
index ccad0cd7e..eddf34aca 100644
--- a/tests/modules/testQGSJetII.cpp
+++ b/tests/modules/testQGSJetII.cpp
@@ -181,7 +181,7 @@ TEST_CASE("QgsjetIIInterface", "interaction,processes") {
 
     corsika::qgsjetII::Interaction model;
     model.doInteraction(view); // this also should produce some fragments
-    CHECK(view.getSize() == Approx(300).margin(100)); // this is not physics validation
+    CHECK(view.getSize() == Approx(300).margin(150)); // this is not physics validation
     int countFragments = 0;
     for (auto const& sec : view) { countFragments += (is_nucleus(sec.getPID())); }
     CHECK(countFragments == Approx(4).margin(2)); // this is not physics validation
-- 
GitLab