diff --git a/debian/patches/fix-bad-test.patch b/debian/patches/fix-bad-test.patch index e941e9e..17b92be 100644 --- a/debian/patches/fix-bad-test.patch +++ b/debian/patches/fix-bad-test.patch @@ -1,14 +1,22 @@ -Description: Fix bad test - For an unknown reason, this test fails -Author: Xavier Guimard +From: Xavier Guimard +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); }); });