Skip to content

Commit 84a53c1

Browse files
authored
docs(prefer-equality-matcher): fix !== example (#1699)
1 parent 53427f0 commit 84a53c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/prefer-equality-matcher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ Examples of **correct** code for this rule:
3030
```js
3131
expect(x).toBe(5);
3232
expect(name).not.toEqual('Carl');
33-
expect(myObj).toStrictEqual(thatObj);
33+
expect(myObj).not.toStrictEqual(thatObj);
3434
```

0 commit comments

Comments
 (0)