record of Header changed to set of Header
diff --git a/src/STOMP_Types.ttcn b/src/STOMP_Types.ttcn
index d665073..1a5c616 100644
--- a/src/STOMP_Types.ttcn
+++ b/src/STOMP_Types.ttcn
@@ -101,19 +101,19 @@
 }
 
 
-type charstring MyCharstringType ( pattern  "(([\q{0,0,0,14}-9]|[;-}])#(1,))" );
+type charstring HeaderCharstringType ( pattern  "(([\q{0,0,0,14}-9]|[;-}])#(1,))" );
 
 
 type record Header {
-  MyCharstringType header_name,
-  MyCharstringType header_value
+  HeaderCharstringType header_name,
+  HeaderCharstringType header_value
 }with {
   variant "SEPARATOR(':',,)" 
   variant "END('\r\n','(\r)#(0,1)\n',)"  //EOL
 }
 
 
-type record of Header Headers with {
+type set of Header Headers with {
   variant "END('\r\n','(\r)#(0,1)\n',)"  //EOL
 } 
 
diff --git a/test/Makefile b/test/Makefile
index 3ed4e7d..39703c3 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -52,7 +52,8 @@
 COMPILER_FLAGS = -L 
 
 # Execution mode: (either ttcn3 or ttcn3-parallel)
-TTCN3_LIB = ttcn3-parallel
+TTCN3_LIB = ttcn3
+#-parallel
 
 # The path of your OpenSSL installation:
 # If you do not have your own one, leave it unchanged.
@@ -98,7 +99,7 @@
 OTHER_FILES = Makefile
 
 # The name of the executable test suite:
-EXECUTABLE = STOMP_Types
+EXECUTABLE = stomp