Index: trunk/psLib/test/sys/tap_psLine.c
===================================================================
--- trunk/psLib/test/sys/tap_psLine.c	(revision 12781)
+++ trunk/psLib/test/sys/tap_psLine.c	(revision 41171)
@@ -23,14 +23,13 @@
     psLogSetLevel(PS_LOG_INFO);
 
-    //testLineAlloc()
+    // testLineAlloc()
     {
         psMemId id = psMemGetId();
         psLine *lineline = NULL;
         lineline = psLineAlloc(20);
-        ok(lineline->NLINE==20, "psLine set NLINE parameter during Allocation");
-        ok(lineline->Nline == 0, "psLine set Nline parameter during Allocation");
+        ok(lineline->NLINE == 20, "psLine set NLINE parameter during Allocation");
+        ok(lineline->Nline ==  0, "psLine set Nline parameter during Allocation");
         strncpy(lineline->line, "Hello World", 20);
-        ok(!strncmp(lineline->line, "Hello World", 20),
-            "psLine was stored a simple string!");
+        ok(!strncmp(lineline->line, "Hello World", 20), "psLine was stored a simple string!");
         psFree(lineline);
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
@@ -41,8 +40,8 @@
         psMemId id = psMemGetId();
         psLine *line = NULL;
-        //Return false for NULL input
+        // Return false for NULL input
         int okay = !psLineInit(line);
         ok(okay, "psLineInit.  Expected false for NULL psLine input");
-        //Allocate a line and return true on Init
+        // Allocate a line and return true on Init
         line = psLineAlloc(1);
         okay = psLineInit(line);
@@ -65,8 +64,6 @@
         int okay = psLineAdd(line, "Hello %s", "World");
         ok( okay, "psLineAdd.  Expected true for valid psLine input");
-        ok(line->NLINE == 20 && line->Nline == 11,
-            "psLineAdd failed to return the correct line parameters");
-        ok(!strncmp(line->line, "Hello World", 20),
-            "psLineAdd failed to store the correct line string.");
+        ok(line->NLINE == 20 && line->Nline == 11, "psLineAdd failed to return the correct line parameters");
+        ok(!strncmp(line->line, "Hello World", 20), "psLineAdd failed to store the correct line string.");
         psFree(line);
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
@@ -79,9 +76,7 @@
         psLine *line = NULL;
         //Return false for Null input line
-        ok(!psMemCheckLine(line),
-            "psMemCheckLine return false for NULL line input");
+        ok(!psMemCheckLine(line), "psMemCheckLine return false for NULL line input");
         line = psLineAlloc(1);
-        ok(psMemCheckLine(line),
-            "psMemCheckLine return true for valid line input");
+        ok(psMemCheckLine(line), "psMemCheckLine return true for valid line input");
         psFree(line);
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
