From f6fd1248d714bbe5dd530a5e58405b3d61635aee Mon Sep 17 00:00:00 2001
From: balaskoa <Jeno.Balasko@ericsson.com>
Date: Tue, 13 Aug 2019 14:53:43 +0200
Subject: [PATCH] Name System has been brought back

Signed-off-by: balaskoa <Jeno.Balasko@ericsson.com>
---
 .../connectMapOperTest/ConnectMapOperNegTest.ttcn         | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/regression_test/connectMapOperTest/ConnectMapOperNegTest.ttcn b/regression_test/connectMapOperTest/ConnectMapOperNegTest.ttcn
index 078983b4f..f0d657d4c 100644
--- a/regression_test/connectMapOperTest/ConnectMapOperNegTest.ttcn
+++ b/regression_test/connectMapOperTest/ConnectMapOperNegTest.ttcn
@@ -20,13 +20,13 @@ module ConnectMapOperNegTest {
           port loopbackPort p2;
     }   
 
-    type component System_ {
+    type component System {
           port loopbackPort p1;
           port loopbackPort p2;
          
     }   
 
-    testcase tc_neg_connect_after_map() runs on GeneralComp system System_ {
+    testcase tc_neg_connect_after_map() runs on GeneralComp system System {
         map(self:p1, system:p1);
         template charstring t_expected := pattern "*Dynamic test case error: Connect operation cannot be performed on a mapped port \(p1\).*"
         @try {
@@ -44,7 +44,7 @@ module ConnectMapOperNegTest {
         setverdict(pass);    
     }
 
-    testcase tc_neg_connect_after_map2() runs on GeneralComp system System_ {
+    testcase tc_neg_connect_after_map2() runs on GeneralComp system System {
         var GeneralComp v_comp := GeneralComp.create;
         template charstring t_expected := pattern "*Dynamic test case error: Connect operation cannot be performed on a mapped port \(p1\).*"
         map(self:p1, system:p1);
@@ -63,7 +63,7 @@ module ConnectMapOperNegTest {
         setverdict(pass);    
     }
 
-    testcase tc_neg_map_after_connect() runs on GeneralComp system System_ {
+    testcase tc_neg_map_after_connect() runs on GeneralComp system System {
         var GeneralComp v_comp := GeneralComp.create;
         template charstring t_expected := pattern "*Dynamic test case error: Map operation is not allowed on a connected port \(p1\)."
         connect(self:p1, v_comp:p2);
-- 
GitLab