format patches
This commit is contained in:
parent
375d594ea3
commit
df090e9229
|
@ -1,14 +1,22 @@
|
||||||
Description: Fix bad test
|
From: Xavier Guimard <yadd@debian.org>
|
||||||
For an unknown reason, this test fails
|
Date: Mon, 20 Feb 2023 16:13:58 +0800
|
||||||
Author: Xavier Guimard <yadd@debian.org>
|
Subject: Fix bad test
|
||||||
|
|
||||||
Bug: https://github.com/floatdrop/duplexer3/issues/2
|
Bug: https://github.com/floatdrop/duplexer3/issues/2
|
||||||
Bug-Debian: https://bugs.debian.org/918670
|
Bug-Debian: https://bugs.debian.org/918670
|
||||||
Forwarded: https://github.com/floatdrop/duplexer3/issues/2
|
Forwarded: https://github.com/floatdrop/duplexer3/issues/2
|
||||||
Last-Update: 2019-01-09
|
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
|
--- a/test/tests.js
|
||||||
+++ b/test/tests.js
|
+++ b/test/tests.js
|
||||||
@@ -164,6 +164,7 @@
|
@@ -164,6 +164,7 @@ describe("duplexer3", function() {
|
||||||
assert.equal(typeof duplexer3.DuplexWrapper, "function");
|
assert.equal(typeof duplexer3.DuplexWrapper, "function");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -16,7 +24,7 @@ Last-Update: 2019-01-09
|
||||||
it("should not force flowing-mode", function(done) {
|
it("should not force flowing-mode", function(done) {
|
||||||
var writable = new stream.PassThrough();
|
var writable = new stream.PassThrough();
|
||||||
var readable = 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);
|
assert.equal(readable._readableState.flowing, null);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue