Skip to content

Commit 6d49b6e

Browse files
authored
test: Update help menu test cases (#660)
1 parent a166098 commit 6d49b6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/cli/test_help.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
def test_help_page_for_non_aliased_actions():
1313
process = exec_test_command(["linode-cli", "linodes", "list", "--help"])
1414
output = process.stdout.decode()
15-
wrapped_output = textwrap.fill(output, width=150).replace("\n", "")
15+
wrapped_output = textwrap.fill(output, width=180).replace("\n", "")
1616

1717
assert contains_at_least_one_of(
1818
wrapped_output, ["Linodes List", "List Linodes"]
@@ -34,7 +34,7 @@ def test_help_page_for_non_aliased_actions():
3434
def test_help_page_for_aliased_actions():
3535
process = exec_test_command(["linode-cli", "linodes", "ls", "--help"])
3636
output = process.stdout.decode()
37-
wrapped_output = textwrap.fill(output, width=150).replace("\n", "")
37+
wrapped_output = textwrap.fill(output, width=180).replace("\n", "")
3838

3939
assert contains_at_least_one_of(
4040
wrapped_output, ["Linodes List", "List Linodes"]

0 commit comments

Comments
 (0)