```
2026-02-04 06:04:16,385.385 INFO:__main__: from .helper import DashboardTestCase, MgrModuleTestCase
2026-02-04 06:04:16,385.385 INFO:__main__:ImportError: cannot import name 'MgrModuleTestCase' from 'tasks.mgr.dashboard.helper' (/home/jenkins-build/build/workspace/ceph-api/qa/tasks/mgr/dashboard/helper.py)
```
Signed-off-by: Nizamudeen A <nia@redhat.com>
-import time
+from .test_mgr_module import MgrModuleTestCase
-from .helper import DashboardTestCase, MgrModuleTestCase
-
-class FeedbackTest(DashboardTestCase, MgrModuleTestCase):
+class FeedbackTest(MgrModuleTestCase):
@classmethod
def setUpClass(cls):
cls._ceph_cmd(['mgr', 'module', 'enable', 'feedback'], wait=3)
cls._get(
'/api/mgr/module',
- retries=2,
+ retries=5,
wait_func=lambda: # pylint: disable=unnecessary-lambda
- cls.wait_until_rest_api_accessible()
+ MgrModuleTestCase.wait_until_rest_api_accessible(cls)
)
def test_create_api_key(self):