From 9a507fa5bf97fb0b3f36a224937e7fa170456a06 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Wed, 18 Mar 2015 14:06:58 -0700 Subject: [PATCH] Fixed test. --- tests/cases/fourslash/getOccurrencesConst04.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/cases/fourslash/getOccurrencesConst04.ts b/tests/cases/fourslash/getOccurrencesConst04.ts index 6e4d4d6112c..c7f293450d3 100644 --- a/tests/cases/fourslash/getOccurrencesConst04.ts +++ b/tests/cases/fourslash/getOccurrencesConst04.ts @@ -1,12 +1,12 @@ /// ////export const class C { -//// private static [|const|] foo; -//// constructor(public [|const|] foo) { +//// private static c/*1*/onst foo; +//// constructor(public con/*2*/st foo) { //// } ////} -test.ranges().forEach(range => { - goTo.position(range.start); - verify.occurrencesAtPositionCount(0); -}); \ No newline at end of file +goTo.marker("1"); +verify.occurrencesAtPositionCount(1); +goTo.marker("2"); +verify.occurrencesAtPositionCount(0); \ No newline at end of file