Skip to content

Commit eca5f01

Browse files
committed
Fix test
1 parent d6d1c58 commit eca5f01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ func TestGoToDefinitionShorthandObjectLiteralWithInterface(t *testing.T) {
1818
function makeSomething([|foo|]: string): Something {
1919
return { [|f/*1*/oo|] };
2020
}`
21-
f := fourslash.NewFourslash(t, nil /*capabilities*/, content)
21+
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
22+
defer done()
2223
f.VerifyBaselineGoToDefinition(t, true, "1")
2324
}

0 commit comments

Comments
 (0)