Skip to content

Commit b001fcb

Browse files
committed
fix: shell detector tests
1 parent 35d63a1 commit b001fcb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/features/common/shellDetector.unit.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { Terminal } from 'vscode';
2-
import { identifyTerminalShell } from '../../../features/common/shellDetector';
31
import assert from 'assert';
2+
import { Terminal } from 'vscode';
43
import { isWindows } from '../../../common/utils/platformUtils';
54
import { ShellConstants } from '../../../features/common/shellConstants';
5+
import { identifyTerminalShell } from '../../../features/common/shellDetector';
66

77
const testShellTypes: string[] = [
88
'sh',
@@ -100,7 +100,7 @@ function expectedShellType(shellType: string): string {
100100
return ShellConstants.NU;
101101
case 'tcsh':
102102
case 'tcshell':
103-
return ShellConstants.FISH;
103+
return ShellConstants.TCSH;
104104
case 'xonsh':
105105
return ShellConstants.XONSH;
106106
case 'wsl':

0 commit comments

Comments
 (0)