We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2e3e5 commit 1978705Copy full SHA for 1978705
src/pytest_markdown_docs/plugin.py
@@ -255,7 +255,7 @@ def collect(self):
255
fence_test = object_test.fence_test
256
yield MarkdownInlinePythonItem.from_parent(
257
self,
258
- name=f"{object_test.object_name}[CodeFence#{object_test.intra_object_index+1}][line:{fence_test.start_line}]",
+ name=f"{object_test.object_name}[CodeFence#{object_test.intra_object_index + 1}][line:{fence_test.start_line}]",
259
test_definition=fence_test,
260
)
261
@@ -328,7 +328,7 @@ def collect(self):
328
):
329
330
331
- name=f"[CodeFence#{i+1}][line:{fence_test.start_line}]",
+ name=f"[CodeFence#{i + 1}][line:{fence_test.start_line}]",
332
333
334
0 commit comments