From 76a8c0501a15429da009f7d16177f15a0a09189d Mon Sep 17 00:00:00 2001 From: James Sumners Date: Tue, 9 Jan 2024 09:34:13 -0500 Subject: [PATCH] omg! how about now? --- test/other/v14-assert-cyclical-dependency-failure.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/other/v14-assert-cyclical-dependency-failure.mjs b/test/other/v14-assert-cyclical-dependency-failure.mjs index 3b05de8..173b692 100644 --- a/test/other/v14-assert-cyclical-dependency-failure.mjs +++ b/test/other/v14-assert-cyclical-dependency-failure.mjs @@ -31,6 +31,6 @@ nodeProcess.on('close', (code) => { // satisfy linter complaining about unused variables strictEqual(expectedOutput, expectedOutput) - strictEqual(stdout.length >= 0, true) - strictEqual(stderr.length >= 0, true) + strictEqual(typeof stdout, 'string') + strictEqual(typeof stderr, 'string') })