Skip to content

Commit 981e9f5

Browse files
committed
Pull arch from right place
1 parent f9b2904 commit 981e9f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/workbench/contrib/terminalContrib/chatAgentTools/test/electron-browser/commandSimplifier.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ import { NullLogService } from '../../../../../../platform/log/common/log.js';
2222
import { FileService } from '../../../../../../platform/files/common/fileService.js';
2323
import { Schemas } from '../../../../../../base/common/network.js';
2424
import { TreeSitterLibraryService } from '../../../../../services/treeSitter/browser/treeSitterLibraryService.js';
25+
import { arch } from '../../../../../../base/common/process.js';
2526

2627
// TODO: The powershell grammar can cause an OOM crash on arm https://github.com/microsoft/vscode/issues/273177
27-
(process.arch === 'arm' || process.arch === 'arm64' ? suite.skip : suite)('command re-writing', () => {
28+
(arch === 'arm' || arch === 'arm64' ? suite.skip : suite)('command re-writing', () => {
2829
const store = ensureNoDisposablesAreLeakedInTestSuite();
2930

3031
let instantiationService: TestInstantiationService;

0 commit comments

Comments
 (0)