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 f684026 commit 0ff18edCopy full SHA for 0ff18ed
tests/feature/test_steps.py
@@ -626,14 +626,12 @@ def test_right_aligned_steps(pytester):
626
"""Parser correctly handles steps that are not left-aligned"""
627
pytester.makefile(
628
".feature",
629
- right_aligned_steps=textwrap.dedent(
630
- """\
631
- Feature: Non-standard step indentation
632
- Scenario: Indent my steps
633
- Given I indent with 4 spaces
634
- Then I indent with 5 spaces to line up
635
- """
636
- ),
+ right_aligned_steps="""\
+Feature: Non-standard step indentation
+ Scenario: Indent my steps
+ Given I indent with 4 spaces
+ Then I indent with 5 spaces to line up
+ """,
637
)
638
pytester.makepyfile(
639
textwrap.dedent(
0 commit comments