Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Janine Olear <pninak@web.de>
  • Loading branch information
miyunari authored and major committed Oct 14, 2022
1 parent 58191f0 commit c2e391b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

MOCKED_GCP_IMAGE_LIST = [
{"status": "READY"},
{"status": "DEPRICATED"},
{"status": "DEPRECATED"},
]


Expand Down
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_gcp_images_live(runner):

assert isinstance(parsed, list)

assert {image["status"] for image in parsed} != "DEPRICATED"
assert {image["status"] for image in parsed} != "DEPRECATED"

assert result.exit_code == 0

Expand All @@ -135,6 +135,6 @@ def test_gcp_images_offline(mock_gcp_images, runner):

assert isinstance(parsed, list)

assert {image["status"] for image in parsed} != "DEPRICATED"
assert {image["status"] for image in parsed} != "DEPRECATED"

assert result.exit_code == 0

0 comments on commit c2e391b

Please sign in to comment.