Skip to content

Commit

Permalink
fix: lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Goldberg committed Jun 1, 2021
1 parent 1ae9c6e commit 7041d15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-plugin/tests/rules/prefer-includes.test.ts
Expand Up @@ -423,7 +423,7 @@ ruleTester.run('prefer-includes', rule, {
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| Float64Array,
>(a: U): void {
a.indexOf(b) !== -1;
}
Expand All @@ -441,7 +441,7 @@ ruleTester.run('prefer-includes', rule, {
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| Float64Array,
>(a: U): void {
a.includes(b);
}
Expand Down

0 comments on commit 7041d15

Please sign in to comment.