diff --git a/unit_tests/recipes/Test_ToGenericOp.cpp b/unit_tests/recipes/Test_ToGenericOp.cpp
index 1cc5d144e58835d4a8c7d5ac3c2a2655975d3283..cb75fdb1072dee476c88c1f6d502a792b2e6abd9 100644
--- a/unit_tests/recipes/Test_ToGenericOp.cpp
+++ b/unit_tests/recipes/Test_ToGenericOp.cpp
@@ -63,7 +63,8 @@ TEST_CASE("[graph/convert] toGenericOp", "[toGenericOp][recipies]") {
 
         std::shared_ptr<Node> metaOpNode;
 
-        for (const auto& nodePtr : g->getNodes()) 
+        const auto nodes = g->getNodes(); // g nodes gets modified in the loop!
+        for (const auto& nodePtr : nodes) 
         {
             if (nodePtr->type() == "ConvReLUFC") 
             {