mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
fix typo (#916)
This commit is contained in:
parent
ac2a963c9c
commit
b4814e1ef9
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue