Skip to content

Commit 7c22e50

Browse files
author
Arthur Ozga
committed
update existing tests
1 parent 5c91798 commit 7c22e50

File tree

83 files changed

+84
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+84
-85
lines changed

tests/cases/fourslash/unusedClassInNamespace1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
//// } |]
88

99
verify.rangeAfterCodeFix(`namespace greeter {
10-
}`);
10+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);

tests/cases/fourslash/unusedClassInNamespace2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
verify.rangeAfterCodeFix(`namespace greeter {
1212
export class class2 {
1313
}
14-
}`);
14+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);
1515

tests/cases/fourslash/unusedClassInNamespace3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ verify.rangeAfterCodeFix(`namespace Validation {
2222
2323
export class c2 {
2424
}
25-
}`);
25+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);

tests/cases/fourslash/unusedClassInNamespace4.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ verify.rangeAfterCodeFix(`namespace Validation {
2424
export class c2 {
2525
2626
}
27-
}`);
27+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);

tests/cases/fourslash/unusedConstantInFunction1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
//// } |]
77

88
verify.rangeAfterCodeFix(`function f1 () {
9-
}`);
9+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);
1010

tests/cases/fourslash/unusedEnumInFunction1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
verify.rangeAfterCodeFix(`function f1 () {
99
}
10-
`);
10+
`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);
1111

tests/cases/fourslash/unusedEnumInNamespace1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
//// } |]
99

1010
verify.rangeAfterCodeFix(`namespace greeter {
11-
}`);
11+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);

tests/cases/fourslash/unusedFunctionInNamespace1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
//// } |]
99

1010
verify.rangeAfterCodeFix(`namespace greeter {
11-
}`);
11+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);

tests/cases/fourslash/unusedFunctionInNamespace2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
verify.rangeAfterCodeFix(`namespace greeter {
1212
export function function2() {
1313
}
14-
}`);
14+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);

tests/cases/fourslash/unusedFunctionInNamespace3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
////} |]
1010

1111
verify.rangeAfterCodeFix(`namespace Validation {
12-
}`);
12+
}`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);

0 commit comments

Comments
 (0)