From 87c5c5bfa0795acb1134bb0ff9ed966e8e3514dd Mon Sep 17 00:00:00 2001
From: vl241552 <vincent.lorrain@cea.fr>
Date: Tue, 7 Nov 2023 15:01:56 +0000
Subject: [PATCH] fix GraphRegex test

---
 unit_tests/graphRegex/Test_GraphRegex.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/unit_tests/graphRegex/Test_GraphRegex.cpp b/unit_tests/graphRegex/Test_GraphRegex.cpp
index e333d2fdc..b30560ea3 100644
--- a/unit_tests/graphRegex/Test_GraphRegex.cpp
+++ b/unit_tests/graphRegex/Test_GraphRegex.cpp
@@ -46,7 +46,7 @@ TEST_CASE("GraphRegexUser") {
         
     }
 
-   // SECTION("CC") {
+   SECTION("CC") {
 
         
 
@@ -70,7 +70,7 @@ TEST_CASE("GraphRegexUser") {
         const std::string query = "Conv->Conv";
         const std::string query2 = "Conv->FC";
 
-        //sut->setNodeKey("FC","getType($) =='FC'");
+        sut->setNodeKey("FC","getType($) =='FC'");
 
         sut->addQuery(query);
         sut->addQuery(query2);
@@ -80,5 +80,5 @@ TEST_CASE("GraphRegexUser") {
             REQUIRE(solution->getQuery() == query);
         }
         
-    //}
+    }
 }
\ No newline at end of file
-- 
GitLab