minor display improvement in fuzzer when nb of tests is very large
diff --git a/tests/fuzzer.c b/tests/fuzzer.c
index 22f034d..f811049 100644
--- a/tests/fuzzer.c
+++ b/tests/fuzzer.c
@@ -523,7 +523,7 @@
 
         /* notification */
         if (nbTests >= testNb) { DISPLAYUPDATE(2, "\r%6u/%6u    ", testNb, nbTests); }
-        else { DISPLAYUPDATE(2, "\r%6u      ", testNb); }
+        else { DISPLAYUPDATE(2, "\r%6u          ", testNb); }
 
         FUZ_rand(&coreSeed);
         { U32 const prime1 = 2654435761U; lseed = coreSeed ^ prime1; }
diff --git a/tests/zstreamtest.c b/tests/zstreamtest.c
index 38b6a76..aa119e6 100644
--- a/tests/zstreamtest.c
+++ b/tests/zstreamtest.c
@@ -452,8 +452,8 @@
         size_t maxTestSize;
 
         /* init */
-        DISPLAYUPDATE(2, "\r%6u", testNb);
-        if (nbTests >= testNb) DISPLAYUPDATE(2, "/%6u   ", nbTests);
+        if (nbTests >= testNb) { DISPLAYUPDATE(2, "\r%6u/%6u    ", testNb, nbTests); }
+        else { DISPLAYUPDATE(2, "\r%6u          ", testNb); }
         FUZ_rand(&coreSeed);
         lseed = coreSeed ^ prime1;