Skip to content

Commit aa3ea7f

Browse files
committed
Fix import
1 parent 9c13b46 commit aa3ea7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/contrib/indentation/test/browser/indentation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ import { DisposableStore } from 'vs/base/common/lifecycle';
1515
import { ILanguageConfigurationService } from 'vs/editor/common/languages/languageConfigurationRegistry';
1616
import { ILanguageService } from 'vs/editor/common/languages/language';
1717
import { EncodedTokenizationResult, IState, TokenizationRegistry } from 'vs/editor/common/languages';
18-
import { StandardTokenType } from 'vs/workbench/api/common/extHostTypes';
1918
import { MetadataConsts } from 'vs/editor/common/encodedTokenAttributes';
2019
import { createTextModel } from 'vs/editor/test/common/testTextModel';
2120
import { NullState } from 'vs/editor/common/languages/nullTokenize';
21+
import { StandardTokenType } from 'vs/workbench/api/common/extHostTypes';
2222

2323
function testIndentationToSpacesCommand(lines: string[], selection: Selection, tabSize: number, expectedLines: string[], expectedSelection: Selection): void {
2424
testCommand(lines, null, selection, (accessor, sel) => new IndentationToSpacesCommand(sel, tabSize), expectedLines, expectedSelection);

0 commit comments

Comments
 (0)