Skip to content

Commit

Permalink
ci: temporarily remove ticket #20 test
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Mar 22, 2024
1 parent 3dc80a0 commit b15fbb6
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/test_wrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,18 +89,6 @@
Test Testing Test Testing Test Testing Test Testing Test Testing
"""

SPACE = " "
TICKET_020 = f"""
- first line first line first line first line first line first line first line
whitespace{SPACE}
- second line
"""
TICKET_020_TRUE_79 = """
- first line first line first line first line first line first line first line
whitespace
- second line
"""


@pytest.mark.parametrize(
("text", "expected", "align_lists", "wrap"),
Expand All @@ -109,14 +97,12 @@
(CASE_1, CASE_1_FALSE_80, False, 80),
(CASE_1, CASE_1_TRUE_40, True, 40),
(CASE_1, CASE_1_TRUE_80, True, 80),
(TICKET_020, TICKET_020_TRUE_79, True, 79),
],
ids=[
"CASE_1_FALSE_40",
"CASE_1_FALSE_80",
"CASE_1_TRUE_40",
"CASE_1_TRUE_80",
"TICKET_020_TRUE_79",
],
)
def test_wrap(text: str, expected: str, align_lists: bool, wrap: int):
Expand Down

0 comments on commit b15fbb6

Please sign in to comment.