Skip to content

Commit 2a3962c

Browse files
committed
fix tests
1 parent b23b18f commit 2a3962c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/eslint-scope/tests/types/types.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ const ref = new eslintScope.Reference(
276276
scopeManager.globalScope,
277277
0,
278278
null,
279-
false,
279+
null,
280280
false,
281281
false,
282282
);
@@ -347,8 +347,8 @@ scopeInstance.dynamic;
347347
scopeInstance.directCallToEvalScope;
348348
// $ExpectType boolean
349349
scopeInstance.thisFound;
350-
// $ExpectType void
351-
scopeInstance.resolve(ref);
350+
// $ExpectType Reference | null
351+
scopeInstance.resolve(identifier);
352352
// $ExpectType boolean
353353
scopeInstance.isStatic();
354354
// $ExpectType boolean

0 commit comments

Comments
 (0)