From 466d810689ed2ae0c214de50d4b364c4d4f76e91 Mon Sep 17 00:00:00 2001
From: balaskoa <Jeno.Balasko@ericsson.com>
Date: Tue, 1 Oct 2019 08:58:39 +0200
Subject: [PATCH] Comments have been corrected

Signed-off-by: balaskoa <Jeno.Balasko@ericsson.com>
Change-Id: Ifec85c7c84af0489d7f3ea4b0a15227b7b501a16
---
 regression_test/predefFunction2/predefFunctTest.ttcn | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/regression_test/predefFunction2/predefFunctTest.ttcn b/regression_test/predefFunction2/predefFunctTest.ttcn
index 7ec763e8e..a28aea7f0 100755
--- a/regression_test/predefFunction2/predefFunctTest.ttcn
+++ b/regression_test/predefFunction2/predefFunctTest.ttcn
@@ -318,7 +318,7 @@ testcase tc_predef_bit2hex2() runs on CT {
     setverdict(fail, "expected '12FA'H got:", vl_hs);
   }
 }
-//TitanBitString_Element is the argument
+//bitstring element is the argument
 testcase tc_predef_bit2hex_bitstr_element() runs on CT {
   var bitstring vl_bs := '001'B;
   var RoHS exp := {'0'H,'0'H,'1'H};
@@ -368,7 +368,7 @@ testcase tc_predef_bit2oct2() runs on CT {
   }
 }
 
-//TitanBitString_Element is the argument
+//bitstring element is the argument
 testcase tc_predef_bit2oct_bitstr_element() runs on CT {
   var bitstring vl_bs := '001'B;
   var RoOS exp := {'00'O,'00'O,'01'O};
@@ -445,7 +445,7 @@ testcase tc_predef_bit2int_good_long5() runs on CT {
   }
 }
 
-//TitanBitString_Element is the argument
+//bitstring element is the argument
 testcase tc_predef_bit2int_bitstr_element() runs on CT {
   var bitstring vl_bs := '001'B;
   var RoI exp := {0,0,1};
@@ -533,7 +533,7 @@ testcase tc_predef_bit2str_good_empty() runs on CT {
   setverdict(pass);
 }
 
-//TitanBitString_Element is the argument
+//bitstring element is the argument
 testcase tc_predef_bit2str_bitstr_element() runs on CT {
   var bitstring vl_bs := '001'B;
   var RoCS exp := {"0","0","1"};
@@ -1723,7 +1723,7 @@ testcase tc_predef_oct2char_bad3() runs on CT {
   }
 }
 
-//for TitanOctetString_Element
+//octetstring element is the argument
 testcase tc_predef_oct2char_octetstr_elem() runs on CT {
  var charstring cs := "Dipsy";
  var octetstring os := '4469707379'O;
@@ -1737,7 +1737,7 @@ testcase tc_predef_oct2char_octetstr_elem() runs on CT {
  } 
 }
 
-//for TitanOctetString_Element
+//octetstring element is the argument
 testcase tc_predef_oct2char_octetstr_elem_bad() runs on CT {
  var charstring cs := "Áá";
  var octetstring os := 'C1E1'O; //>'7f'O 2x
-- 
GitLab