Skip to content

Commit 133d97e

Browse files
committed
formatting
1 parent 8e13f1d commit 133d97e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/client/testing/testController/common/projectAdapter.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33

44
import { TestItem, Uri } from 'vscode';
55
import { TestProvider } from '../../types';
6-
import { ITestDiscoveryAdapter, ITestExecutionAdapter, ITestResultResolver, DiscoveredTestPayload, DiscoveredTestNode } from './types';
6+
import {
7+
ITestDiscoveryAdapter,
8+
ITestExecutionAdapter,
9+
ITestResultResolver,
10+
DiscoveredTestPayload,
11+
DiscoveredTestNode,
12+
} from './types';
713
import { PythonEnvironment, PythonProject } from '../../../envExt/types';
814

915
/**

src/client/testing/testController/workspaceTestAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class WorkspaceTestAdapter {
6262
// first fetch all the individual test Items that we necessarily want
6363
includes.forEach((t) => {
6464
const nodes = getTestCaseNodes(t);
65-
testCaseNodes.push(...nodes);
65+
testCaseNodes.push(...nodes);
6666
});
6767
// iterate through testItems nodes and fetch their unittest runID to pass in as argument
6868
testCaseNodes.forEach((node) => {

0 commit comments

Comments
 (0)