Skip to content

Commit a326764

Browse files
committed
update to formatting / linting
1 parent d4abc23 commit a326764

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

python_files/tests/pytestadapter/expected_discovery_test_output.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
],
9494
"id_": get_absolute_test_id(
9595
"unittest_pytest_same_file.py::TestExample",
96-
os.fspath(unit_pytest_same_file_path),
96+
unit_pytest_same_file_path,
9797
),
9898
},
9999
{
@@ -205,7 +205,7 @@
205205
],
206206
"id_": get_absolute_test_id(
207207
"unittest_folder/test_add.py::TestAddFunction",
208-
os.fspath(test_add_path),
208+
test_add_path,
209209
),
210210
},
211211
{
@@ -233,7 +233,7 @@
233233
],
234234
"id_": get_absolute_test_id(
235235
"unittest_folder/test_add.py::TestDuplicateFunction",
236-
os.fspath(test_add_path),
236+
test_add_path,
237237
),
238238
},
239239
],
@@ -286,7 +286,7 @@
286286
],
287287
"id_": get_absolute_test_id(
288288
"unittest_folder/test_subtract.py::TestSubtractFunction",
289-
os.fspath(test_subtract_path),
289+
test_subtract_path,
290290
),
291291
},
292292
{

python_files/vscode_pytest/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,6 @@ def create_class_node(class_module: pytest.Class | DescribeBlock) -> TestNode:
764764
Keyword arguments:
765765
class_module -- the pytest object representing a class module.
766766
"""
767-
768767
return {
769768
"name": class_module.name,
770769
"path": get_node_path(class_module),

0 commit comments

Comments
 (0)