Index: tests/random.cfa
===================================================================
--- tests/random.cfa	(revision dc8511c89e456024f8e634c472b1ebc5d96cc56e)
+++ tests/random.cfa	(revision f9128a579682d99eadea38d7faf6034d7a714a29)
@@ -10,10 +10,10 @@
 // Created On       : Tue Jul  5 21:29:30 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Nov  6 18:00:15 2018
-// Update Count     : 20
+// Last Modified On : Tue Dec  4 21:46:25 2018
+// Update Count     : 22
 //
 
 #include <fstream.hfa>
-#include <stdlib.hfa>										// random
+#include <stdlib.hfa>									// random
 #include <unistd.h>										// getpid
 
@@ -24,52 +24,52 @@
 	// test polymorphic calls to random and stream
 	char c = random();
-	sout | c | endl;
+	sout | c;
 	c = random( 'A' );
-	sout | c | endl;
+	sout | c;
 	c = random( 'A', 'Z' );
-	sout | c | endl;
+	sout | c;
 
 	int i = random();
-    sout | i | endl;
+    sout | i;
 	i = random( 10 );
-    sout | i | endl;
+    sout | i;
 	i = random( -10, 20 );
-    sout | i | endl;
+    sout | i;
 
 	unsigned int ui = random();
-    sout | ui | endl;
+    sout | ui;
 	ui = random( 10u );
-    sout | ui | endl;
+    sout | ui;
 	ui = random( 10u, 20u );
-    sout | ui | endl;
+    sout | ui;
 
 	long int li = random();
-    sout | li | endl;
+    sout | li;
 	li = random( 10l );
-    sout | li | endl;
+    sout | li;
 	li = random( -10l, 20l );
-    sout | li | endl;
+    sout | li;
 
 	unsigned long int uli = random();
-    sout | uli | endl;
+    sout | uli;
 	uli = random( 10ul );
-    sout | uli | endl;
+    sout | uli;
 	uli = random( 10ul, 20ul );
-    sout | uli | endl;
+    sout | uli;
 
     float f = random();
-    sout | f | endl;
+    sout | f;
 
     double d = random();
-    sout | d | endl;
+    sout | d;
 
     float _Complex fc = random();
-    sout | fc | endl;
+    sout | fc;
 
     double _Complex dc = random();
-    sout | dc | endl;
+    sout | dc;
 
     long double _Complex ldc = random();
-    sout | ldc | endl;
+    sout | ldc;
 } // main
 
