From e95ed29ca97a1247de04b6ef99d22b52cf5c1e81 Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Thu, 8 Nov 2018 18:02:04 +0100 Subject: [PATCH] Fix fourslash test --- tests/cases/fourslash/findAllRefsRootSymbols.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cases/fourslash/findAllRefsRootSymbols.ts b/tests/cases/fourslash/findAllRefsRootSymbols.ts index 0e209765b37..18fbb8e212c 100644 --- a/tests/cases/fourslash/findAllRefsRootSymbols.ts +++ b/tests/cases/fourslash/findAllRefsRootSymbols.ts @@ -9,7 +9,7 @@ const [r0, r1, r2, r3] = test.ranges(); const i = { definition: "(property) I.x: {}", ranges: [r0] }; const j = { definition: "(property) J.x: {}", ranges: [r1] }; const anon = { definition: "(property) x: string", ranges: [r2] }; -const intersect = { definition: "(property) x: string & {}", ranges: [r3] }; +const intersect = { definition: "(property) x: {} & string", ranges: [r3] }; verify.referenceGroups(r0, [i, intersect]); verify.referenceGroups(r1, [j, intersect]); verify.referenceGroups(r2, [anon, intersect]);