diff --git a/lazproj/test/coeditproj/cleaner.coedit b/lazproj/test/coeditproj/cleaner.coedit
index b4de1ab7..cf021ca8 100644
--- a/lazproj/test/coeditproj/cleaner.coedit
+++ b/lazproj/test/coeditproj/cleaner.coedit
@@ -7,7 +7,7 @@ object CurrentProject: TCEProject
       outputOptions.boundsCheck = offAlways
       outputOptions.optimizations = True
       outputOptions.release = True
-      pathsOptions.outputFilename = '<CPP>..\..\cleaner.exe'
+      pathsOptions.outputFilename = '<CAP>cleaner.exe'
       preBuildProcess.options = []
       preBuildProcess.showWindow = swoNone
       postBuildProcess.executable = '<CAP>cleaner.exe'
diff --git a/lazproj/test/src/expandSymString.d b/lazproj/test/src/expandSymString.d
index fca1b761..dc34a19c 100644
--- a/lazproj/test/src/expandSymString.d
+++ b/lazproj/test/src/expandSymString.d
@@ -1,9 +1,15 @@
-module runnable;
+module expandSymString;
 
 import std.stdio;
 import std.getopt;
 
-// pass --a=<CPF> --b=<CPP> --c=<CPR> --d=<CFF> --e=<CFP> --f=<CI> --g=<CAF> --h=<CAP> as parameters in "Run file..."
+/*
+pass:
+
+--a=<CPF> --b=<CPP> --c=<CPR> --d=<CFF> --e=<CFP> --f=<CI> --g=<CAF> --h=<CAP>
+
+as parameters in "Run, Compile and Run file..."
+*/
 void main(string args[])
 {
 
@@ -13,7 +19,6 @@ void main(string args[])
         expanded = "";
         getopt(args, std.getopt.config.passThrough, c, &expanded);
         if (expanded.length != 0)
-            writeln(expanded);
+            writeln(c, " : ", expanded);
     }
-
 }