diff --git a/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts b/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts
index 34e55875676..2e729243497 100644
--- a/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts
+++ b/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts
@@ -1,9 +1,7 @@
///
-const enum Indentation {
- Standard = 3,
- Indented = 12,
-}
+const singleLineOffset = 3;
+const multiLineOffset = 12;
////class C {
@@ -16,22 +14,22 @@ const enum Indentation {
//// }
////}
-verify.docCommentTemplateAt("0", Indentation.Standard,
+verify.docCommentTemplateAt("0", singleLineOffset,
"/** */");
-verify.docCommentTemplateAt("1", Indentation.Standard,
+verify.docCommentTemplateAt("1", singleLineOffset,
"/** */");
-verify.docCommentTemplateAt("2", Indentation.Indented,
+verify.docCommentTemplateAt("2", multiLineOffset,
`/**
*
* @param a
*/
`);
-verify.docCommentTemplateAt("3", Indentation.Indented,
+verify.docCommentTemplateAt("3", multiLineOffset,
`/**
*
* @param a
@@ -39,7 +37,7 @@ verify.docCommentTemplateAt("3", Indentation.Indented,
*/
`);
-verify.docCommentTemplateAt("4", Indentation.Indented,
+verify.docCommentTemplateAt("4", multiLineOffset,
`/**
*
* @param a
@@ -47,7 +45,7 @@ verify.docCommentTemplateAt("4", Indentation.Indented,
* @param param2
*/`);
-verify.docCommentTemplateAt("5", Indentation.Indented,
+verify.docCommentTemplateAt("5", multiLineOffset,
`/**
*
* @param a
diff --git a/tests/cases/fourslash/docCommentTemplateClassDeclMethods02.ts b/tests/cases/fourslash/docCommentTemplateClassDeclMethods02.ts
index a16fbd86064..7a35e60ae9e 100644
--- a/tests/cases/fourslash/docCommentTemplateClassDeclMethods02.ts
+++ b/tests/cases/fourslash/docCommentTemplateClassDeclMethods02.ts
@@ -1,9 +1,7 @@
///
-const enum Indentation {
- Standard = 3,
- Indented = 12,
-}
+const singleLineOffset = 3;
+const multiLineOffset = 12;
////class C {
//// /*0*/
@@ -14,10 +12,10 @@ const enum Indentation {
//// [1 + 2 + 3 + Math.rand()](x: number, y: string, z = true) { }
////}
-verify.docCommentTemplateAt("0", Indentation.Standard,
+verify.docCommentTemplateAt("0", singleLineOffset,
"/** */");
-verify.docCommentTemplateAt("1", Indentation.Indented,
+verify.docCommentTemplateAt("1", multiLineOffset,
`/**
*
* @param x
diff --git a/tests/cases/fourslash/docCommentTemplateObjectLiteralMethods01.ts b/tests/cases/fourslash/docCommentTemplateObjectLiteralMethods01.ts
index 7fb6156be17..5121957a718 100644
--- a/tests/cases/fourslash/docCommentTemplateObjectLiteralMethods01.ts
+++ b/tests/cases/fourslash/docCommentTemplateObjectLiteralMethods01.ts
@@ -1,9 +1,7 @@
///
-const enum Indentation {
- Standard = 3,
- Indented = 12,
-}
+const singleLineOffset = 3;
+const multiLineOffset = 12;
////var x = {
//// /*0*/
@@ -14,10 +12,10 @@ const enum Indentation {
//// [1 + 2 + 3 + Math.rand()](x: number, y: string, z = true) { }
////}
-verify.docCommentTemplateAt("0", Indentation.Standard,
+verify.docCommentTemplateAt("0", singleLineOffset,
"/** */");
-verify.docCommentTemplateAt("1", Indentation.Indented,
+verify.docCommentTemplateAt("1", multiLineOffset,
`/**
*
* @param x