From 0e0e9f1bd9011e509285d2d961e7baf201eb2463 Mon Sep 17 00:00:00 2001 From: Ben Schaaf Date: Fri, 12 Oct 2018 10:24:33 -0700 Subject: [PATCH] Test: Changed the order of the arguments for strictEqual to match the documentation --- .../test-inspector-async-hook-setup-at-inspect-brk.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js b/test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js index f39746a172bf0d..a1b8f301e07d55 100644 --- a/test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js +++ b/test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js @@ -44,7 +44,7 @@ async function runTests() { await checkAsyncStackTrace(session); await session.runToCompletion(); - assert.strictEqual(55, (await instance.expectShutdown()).exitCode); + assert.strictEqual((await instance.expectShutdown()).exitCode, 55); } runTests();