1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
This commit is contained in:
Jaga Santagostino 2017-01-29 11:32:29 +01:00 committed by Tim Neutkens
parent ac2a963c9c
commit b4814e1ef9

View file

@ -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)