Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
(fix) typo in test
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Simeon <jeromesimeon@me.com>
  • Loading branch information
jeromesimeon committed Mar 26, 2019
1 parent 7509693 commit 86f07ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ergo-test/test/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down

0 comments on commit 86f07ac

Please sign in to comment.