Skip to content

Commit

Permalink
Drop errored_pools_report key; introduce stopped_pools key
Browse files Browse the repository at this point in the history
Signed-off-by: mulhern <[email protected]>
  • Loading branch information
mulkieran committed Jun 16, 2022
1 parent ab9db80 commit 15ce0b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/stratis_cli/_stratisd_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ class ReportKey(Enum):
"""

ENGINE_STATE = "engine_state_report"
ERRORED_POOL = "errored_pool_report"
MANAGED_OBJECTS = "managed_objects_report"
STOPPED_POOLS = "stopped_pools"

def __str__(self):
return self.value
Expand Down
2 changes: 1 addition & 1 deletion tests/whitebox/integration/report/test_get_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_report(self):
"""
Test getting errored pool report.
"""
TEST_RUNNER(self._MENU + [str(ReportKey.ERRORED_POOL)])
TEST_RUNNER(self._MENU + [str(ReportKey.STOPPED_POOLS)])

def test_report_no_name(self):
"""
Expand Down

0 comments on commit 15ce0b0

Please sign in to comment.