format patches

This commit is contained in:
zhouganqing 2023-02-20 16:13:58 +08:00
parent 375d594ea3
commit df090e9229
1 changed files with 13 additions and 5 deletions

View File

@ -1,14 +1,22 @@
Description: Fix bad test
For an unknown reason, this test fails
Author: Xavier Guimard <yadd@debian.org>
From: Xavier Guimard <yadd@debian.org>
Date: Mon, 20 Feb 2023 16:13:58 +0800
Subject: Fix bad test
Bug: https://github.com/floatdrop/duplexer3/issues/2
Bug-Debian: https://bugs.debian.org/918670
Forwarded: https://github.com/floatdrop/duplexer3/issues/2
Last-Update: 2019-01-09
For an unknown reason, this test fails
---
test/tests.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/test/tests.js b/test/tests.js
index 74e9160..1b936be 100644
--- a/test/tests.js
+++ b/test/tests.js
@@ -164,6 +164,7 @@
@@ -164,6 +164,7 @@ describe("duplexer3", function() {
assert.equal(typeof duplexer3.DuplexWrapper, "function");
});
@ -16,7 +24,7 @@ Last-Update: 2019-01-09
it("should not force flowing-mode", function(done) {
var writable = new stream.PassThrough();
var readable = new stream.PassThrough();
@@ -201,4 +202,5 @@
@@ -201,4 +202,5 @@ describe("duplexer3", function() {
assert.equal(readable._readableState.flowing, null);
});
});