From 85d1818be38662926fc25e386a9c70e49da33b6e Mon Sep 17 00:00:00 2001 From: Craig Taub Date: Sun, 3 May 2020 13:34:22 +0100 Subject: [PATCH] Swap asser to expect --- test/integration/timeout.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/timeout.spec.js b/test/integration/timeout.spec.js index afe5f0f629..0f98467acc 100644 --- a/test/integration/timeout.spec.js +++ b/test/integration/timeout.spec.js @@ -25,7 +25,7 @@ describe('this.timeout()', function() { done(err); return; } - assert.strictEqual(res.stats.failures, 1); + expect(res.stats.failures, 'to be', 1); done(); }); });