From 1908e2f7ce74bd224845902f279fc53c6a57fe99 Mon Sep 17 00:00:00 2001 From: Jerome Simeon Date: Tue, 26 Mar 2019 11:08:09 -0400 Subject: [PATCH] (fix) typo in test Signed-off-by: Jerome Simeon --- packages/ergo-test/test/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ergo-test/test/util.js b/packages/ergo-test/test/util.js index f419caebd..afe345b7e 100644 --- a/packages/ergo-test/test/util.js +++ b/packages/ergo-test/test/util.js @@ -34,7 +34,7 @@ describe('Compare components corner cases', () => { it('Should succeed comparing null against null', function () { return (() => Util.compareComponent(null, null)).should.not.throw; }); - it('Should fail comparing null against null', function () { + it('Should fail comparing null against 1', function () { return (() => Util.compareComponent(null, 1)).should.throw('expected 1 to equal null'); }); it('Should succeed comparing undefined against undefined', function () {