From 7aeda947245cbf8c6bad38ccc34aa64d9e2efe5a Mon Sep 17 00:00:00 2001 From: cjihrig Date: Tue, 2 Oct 2018 21:21:51 -0400 Subject: [PATCH] test: fix broken test Approved for fast-tracking by: Rich Trott Colin Ihrig Refael Ackermann James M Snell Gireesh Punathil Anna Henningsen Sakthipriyan Vairamani PR-URL: https://github.com/nodejs/node/pull/23232 Reviewed-By: Rich Trott Reviewed-By: Refael Ackermann Reviewed-By: James M Snell Reviewed-By: Gireesh Punathil Reviewed-By: Anna Henningsen Reviewed-By: Sakthipriyan Vairamani --- 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 };