From cf31e240660101318c9b0d39c73a0150e7285608 Mon Sep 17 00:00:00 2001 From: Ricardo Dias Date: Wed, 24 Jul 2019 14:24:18 +0100 Subject: [PATCH] mgr/dashboard: qa: fix RBD test when matching error strings This commit fixes a problem caused by changes to the error descriptions in the RBD python bindings introduced in: a66b06cc764ba66cdabfe2856e9f1bcd738f0772 Signed-off-by: Ricardo Dias --- qa/tasks/mgr/dashboard/test_rbd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/mgr/dashboard/test_rbd.py b/qa/tasks/mgr/dashboard/test_rbd.py index 617e97c76b6..057c5a274ec 100644 --- a/qa/tasks/mgr/dashboard/test_rbd.py +++ b/qa/tasks/mgr/dashboard/test_rbd.py @@ -353,7 +353,7 @@ class RbdTest(DashboardTestCase): res = self.create_image('rbd', 'test_rbd_twice', 10240) self.assertStatus(400) self.assertEqual(res, {"code": '17', 'status': 400, "component": "rbd", - "detail": "[errno 17] error creating image", + "detail": "[errno 17] RBD image already exists (error creating image)", 'task': {'name': 'rbd/create', 'metadata': {'pool_name': 'rbd', 'image_name': 'test_rbd_twice'}}}) @@ -412,7 +412,7 @@ class RbdTest(DashboardTestCase): res = self.remove_image('rbd', 'i_dont_exist') self.assertStatus(400) self.assertEqual(res, {u'code': u'2', "status": 400, "component": "rbd", - "detail": "[errno 2] error removing image", + "detail": "[errno 2] RBD image not found (error removing image)", 'task': {'name': 'rbd/delete', 'metadata': {'pool_name': 'rbd', 'image_name': 'i_dont_exist'}}}) -- 2.39.5