From 9ab62c38afd92853df02b9cb120462642196e11f Mon Sep 17 00:00:00 2001 From: cjihrig Date: Tue, 2 Oct 2018 21:21:51 -0400 Subject: [PATCH] test: fix broken test --- test/parallel/test-stream-buffer-list.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-stream-buffer-list.js b/test/parallel/test-stream-buffer-list.js index ef9b1fef6dbdab..1d3d7dd903d4bb 100644 --- a/test/parallel/test-stream-buffer-list.js +++ b/test/parallel/test-stream-buffer-list.js @@ -36,5 +36,6 @@ const tmp = util.inspect.defaultOptions.colors; util.inspect.defaultOptions = { colors: true }; assert.strictEqual( util.inspect(list), - 'BufferList { length: \u001b[33m0\u001b[39m }'); + 'BufferList { head: \u001b[1mnull\u001b[22m, tail: \u001b[1mnull\u001b[22m,' + + ' length: \u001b[33m0\u001b[39m }'); util.inspect.defaultOptions = { colors: tmp };