diff --git a/unit_tests/operator/Test_MetaOperator.cpp b/unit_tests/operator/Test_MetaOperator.cpp
index ef2223aa1fc7377bdeafb16b21dad1d0314a7a72..028eb935db5e23149a701d7185f7ded9f5292ca5 100644
--- a/unit_tests/operator/Test_MetaOperator.cpp
+++ b/unit_tests/operator/Test_MetaOperator.cpp
@@ -25,7 +25,8 @@ TEST_CASE("[core/operators] MetaOperator", "[Operator]") {
 
         REQUIRE(microGraph->getNodes().size() == 2);
         REQUIRE(microGraph->inputNodes().size() == 2);  // 2 because Conv has inputs outside the meta-op (Producers for weight and bias)
-        REQUIRE((*microGraph->inputNodes().begin())->getOperator()->type() == "Pad");
+        // Order not garanteed by the GraphView
+        //REQUIRE((*microGraph->inputNodes().begin())->getOperator()->type() == "Pad");
         REQUIRE(microGraph->outputNodes().size() == 1);
         REQUIRE((*microGraph->outputNodes().begin())->getOperator()->type() == "Conv");
         REQUIRE(op->nbInputs() == 3);