Skip to content

Commit 70b0414

Browse files
author
Nathan Turinski
committed
Fix imports in tests
1 parent 383bfff commit 70b0414

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

test/ansiUtils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import * as assert from 'assert';
7-
import { stripAnsiControlCharacters } from '../extension.bundle';
7+
import { stripAnsiControlCharacters } from '../src/utils/ansiUtils';
88

99
suite('stripAnsiControlCharacters', () => {
1010
test('removes CSI color sequences', () => {

test/funcHostErrorContext.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import * as assert from 'assert';
7+
import { addErrorLinesFromChunk, isFuncHostErrorLog } from '../src/funcCoreTools/funcHostErrorUtils';
78

8-
// eslint-disable-next-line no-restricted-imports
9-
import { addErrorLinesFromChunk, isFuncHostErrorLog } from '../extension.bundle';
109

1110
suite('isFuncHostErrorLog', () => {
1211
test('detects basic red (31m)', () => {

0 commit comments

Comments
 (0)