1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From 065aba84e932f2774262985fd1cae83c254469e5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bastien=20ROUCARI=C3=88S?= <roucaries.bastien@gmail.com>
Date: Fri, 15 Dec 2017 12:59:21 +0100
Subject: Fix testsuite
Fix testsuite by not printing something
Forwarded: no
---
test/test-zlib-write-after-flush.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/test-zlib-write-after-flush.js b/test/test-zlib-write-after-flush.js
index 2ab74be..652c8b4 100755
--- a/test/test-zlib-write-after-flush.js
+++ b/test/test-zlib-write-after-flush.js
@@ -21,7 +21,7 @@ process.on('exit', function() {
// Make sure that the flush flag was set back to normal
assert.equal(gzip._flushFlag, zlib.Z_NO_FLUSH);
- console.log('ok');
+ //console.log('ok');
});
// make sure that flush/write doesn't trigger an assert failure
|