From bbe8fbe9ca98c1b0c8b5b43c0296fd9cc4d09c77 Mon Sep 17 00:00:00 2001 From: John Spray Date: Mon, 9 Oct 2017 12:10:22 +0100 Subject: [PATCH] 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) --- qa/tasks/mgr/test_module_selftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/mgr/test_module_selftest.py b/qa/tasks/mgr/test_module_selftest.py index 4d2b74d842326..31bc27f8a3db3 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") -- 2.39.5