Skip to content

Commit ef8ea8b

Browse files
committed
fix non flaky test accidentally merged to master
1 parent afcad36 commit ef8ea8b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/vscode/__tests__/ts-plugin-tests/smoketest-template-imports-ts-plugin.test.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ describe('Smoke test: ETI Environment (TS Plugin Mode)', () => {
3434

3535
// Replace a string with a number
3636
await scriptEditor.edit((edit) => {
37-
edit.replace(new Range(10, 20, 10, 27), '{{123}}');
38-
39-
// Original range, in case we revert some of the TS-Plugin-specific
40-
// edit.replace(new Range(6, 20, 6, 27), '{{123}}');
37+
edit.replace(new Range(6, 20, 6, 27), '{{123}}');
4138
});
4239

4340
// Wait for the diagnostic to show up

0 commit comments

Comments
 (0)