Skip to content

Commit a0f2476

Browse files
committed
fix: test
1 parent 8358a40 commit a0f2476

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/cases/fourslash/completionPropertyShorthandForObjectLiteral.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//// declare function f12<T extends Object>(obj: T): void;
1919
//// declare function f13<T extends {}>(obj: T): void;
2020
//// declare function f14<T extends Empty>(obj: T): void;
21-
//// declare function f15<T extends (Empty | Record<string, any> | Object)>(obj: T): void;
21+
//// declare function f15<T extends (Empty | Record<string, any> | {})>(obj: T): void;
2222
//// declare function f16<T extends (Empty | Object | Typed)>(obj: T): void;
2323

2424
//// f1({f/*1*/});
@@ -39,7 +39,7 @@
3939
//// f16({f/*16*/});
4040

4141
verify.completions(
42-
{ marker: ["1", "2", "3", "4", "6", "10", "11", "12", "13", "14", "15"], includes: ["foo"]},
42+
{ marker: ["1", "2", "4", "6", "10", "11", "13", "14", "15"], includes: ["foo"]},
4343
{ marker: ["5", "7", "8"], excludes: ["foo"], isNewIdentifierLocation: true},
44-
{ marker: ["9", "16"], excludes: ["foo"]},
44+
{ marker: ["3", "9", "12", "16"], excludes: ["foo"]},
4545
);

0 commit comments

Comments
 (0)