From d588468095160d7be6f1bc42598772809464b4ea Mon Sep 17 00:00:00 2001 From: Jaga Santagostino Date: Sun, 29 Jan 2017 11:23:09 +0100 Subject: [PATCH] fix typo --- test/unit/shallow-equal.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/shallow-equal.test.js b/test/unit/shallow-equal.test.js index 8ad4e74458d1b..4c75504897b9f 100644 --- a/test/unit/shallow-equal.test.js +++ b/test/unit/shallow-equal.test.js @@ -26,7 +26,7 @@ describe('Shallow Equals', () => { expect(shallowEquals(a, b)).toBe(false) }) - it('should be false if objects if only they matched deeply', () => { + it('should be false if objects matched deeply', () => { const a = { aa: 10, bb: { a: 10 } } const b = { aa: 10, bb: { a: 10 } } expect(shallowEquals(a, b)).toBe(false)