8000 fixup! Add CLI version command prefix (#11474) · localstack/localstack@73d2dc0 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

< 8000 div class="position-relative HeaderMenu-link-wrap d-lg-inline-block">
Appearance settings

Commit 73d2dc0

Browse files
committed
fixup! Add CLI version command prefix (#11474)
1 parent 7951399 commit 73d2dc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/cli/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ def test_create_with_plugins(runner):
6262
localstack_cli = create_with_plugins()
6363
result = runner.invoke(localstack_cli.group, ["--version"])
6464
assert result.exit_code == 0
65-
assert result.output.strip() == VERSION
65+
assert result.output.strip() == f"LocalStack CLI {VERSION}"
6666

6767

6868
def test_version(runner):
6969
result = runner.invoke(cli, ["--version"])
7070
assert result.exit_code == 0
71-
assert result.output.strip() == VERSION
71+
assert result.output.strip() == f"LocalStack CLI {VERSION}"
7272

7373

7474
def test_status_services_error(runner):

0 commit comments

Comments
 (0)
0