From fc5c17848feceb1cee5b96a41e5165bed2cb8eb9 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Mon, 14 Dec 2020 13:47:41 -0500 Subject: [PATCH] ci: typo in docker output --- test/sipp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sipp.js b/test/sipp.js index 16b7363..8133894 100644 --- a/test/sipp.js +++ b/test/sipp.js @@ -67,8 +67,8 @@ obj.sippUac = (file, opts) => { debug(`stdout: ${data}`); addOutput(data.toString()); }); - child_process.stdout.on('data', (data) => { - debug(`stdout: ${data}`); + child_process.stderr.on('data', (data) => { + debug(`stderr: ${data}`); addOutput(data.toString()); }); });