diff --git a/src/stratis_cli/_stratisd_constants.py b/src/stratis_cli/_stratisd_constants.py index 4ec227d5d..343e0e953 100644 --- a/src/stratis_cli/_stratisd_constants.py +++ b/src/stratis_cli/_stratisd_constants.py @@ -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 diff --git a/tests/whitebox/integration/report/test_get_report.py b/tests/whitebox/integration/report/test_get_report.py index 817d8d5c9..4cb31f0d9 100644 --- a/tests/whitebox/integration/report/test_get_report.py +++ b/tests/whitebox/integration/report/test_get_report.py @@ -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): """