Skip to content

Commit c32c6a0

Browse files
Use a less confusing test suite label.
1 parent f35af85 commit c32c6a0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/test/pythonEnvironments/base/locators.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { DisableableLocator, Locators } from '../../../client/pythonEnvironments
1010
import { PythonEnvsChangedEvent } from '../../../client/pythonEnvironments/base/watcher';
1111
import { createEnv, createLocatedEnv, getEnvs, SimpleLocator } from './common';
1212

13-
suite('pyenvs locators - Locators', () => {
13+
suite('Python envs locators - Locators', () => {
1414
suite('onChanged consolidates', () => {
1515
test('one', () => {
1616
const event1: PythonEnvsChangedEvent = {};
@@ -265,7 +265,7 @@ suite('pyenvs locators - Locators', () => {
265265
});
266266
});
267267

268-
suite('pyenvs locators - DisableableLocator', () => {
268+
suite('Python envs locators - DisableableLocator', () => {
269269
suite('onChanged', () => {
270270
test('fires if enabled', () => {
271271
const event1: PythonEnvsChangedEvent = {};

src/test/pythonEnvironments/base/watcher.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const KINDS_TO_TEST = [
2020
PythonEnvKind.OtherVirtual
2121
];
2222

23-
suite('pyenvs watcher - PythonEnvsWatcher', () => {
23+
suite('Python envs watcher - PythonEnvsWatcher', () => {
2424
const location = Uri.file('some-dir');
2525

2626
suite('fire()', () => {

src/test/pythonEnvironments/base/watchers.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PythonEnvKind } from '../../../client/pythonEnvironments/base/info';
77
import { PythonEnvsChangedEvent, PythonEnvsWatcher } from '../../../client/pythonEnvironments/base/watcher';
88
import { DisableableEnvsWatcher, PythonEnvsWatchers } from '../../../client/pythonEnvironments/base/watchers';
99

10-
suite('pyenvs watchers - PythonEnvsWatchers', () => {
10+
suite('Python envs watchers - PythonEnvsWatchers', () => {
1111
suite('onChanged consolidates', () => {
1212
test('empty', () => {
1313
const watcher = new PythonEnvsWatchers([]);
@@ -54,7 +54,7 @@ suite('pyenvs watchers - PythonEnvsWatchers', () => {
5454
});
5555
});
5656

57-
suite('pyenvs watchers - DisableableEnvsWatcher', () => {
57+
suite('Python envs watchers - DisableableEnvsWatcher', () => {
5858
test('enabled by default', () => {
5959
const event1: PythonEnvsChangedEvent = {};
6060
const expected = [event1];

0 commit comments

Comments
 (0)