From: John Spray Date: Mon, 9 Oct 2017 11:10:22 +0000 (+0100) Subject: qa/mgr: fix influx/prometheus test names X-Git-Tag: v12.2.2~61^2~45 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bbe8fbe9ca98c1b0c8b5b43c0296fd9cc4d09c77;p=ceph.git qa/mgr: fix influx/prometheus test names This was a typo: they were swapped around. Signed-off-by: John Spray (cherry picked from commit d96a59e74b6984b77c9f3b15f702e3bf45053590) --- diff --git a/qa/tasks/mgr/test_module_selftest.py b/qa/tasks/mgr/test_module_selftest.py index 4d2b74d84232..31bc27f8a3db 100644 --- a/qa/tasks/mgr/test_module_selftest.py +++ b/qa/tasks/mgr/test_module_selftest.py @@ -32,7 +32,7 @@ class TestModuleSelftest(MgrTestCase): self._selftest_plugin("zabbix") def test_prometheus(self): - self._selftest_plugin("influx") + self._selftest_plugin("prometheus") def test_influx(self): - self._selftest_plugin("prometheus") + self._selftest_plugin("influx")