diff --git a/src/harness/fourslash.ts b/src/harness/fourslash.ts index a9d2bc8a006..844f7b26598 100644 --- a/src/harness/fourslash.ts +++ b/src/harness/fourslash.ts @@ -2043,7 +2043,8 @@ Actual: ${stringify(fullActual)}`); private goToMarkerOrRange(markerOrRange: string | Range) { if (typeof markerOrRange === "string") { this.goToMarker(markerOrRange); - } else { + } + else { this.goToRangeStart(markerOrRange); } }