From ec0bff1335e8dcd8da4c1a8e72360b349af6c8dd Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Fri, 17 Sep 2021 13:59:44 +0200 Subject: [PATCH] Minor changes --- app/tests/test_app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/tests/test_app.py b/app/tests/test_app.py index b6f4197c4..0af2bf477 100644 --- a/app/tests/test_app.py +++ b/app/tests/test_app.py @@ -242,7 +242,8 @@ def test_managevm_delet(self, flash, avatar, delete, user_data): res = self.client.post('/managevm/terminate/infid/0') self.assertEqual(302, res.status_code) self.assertIn('http://localhost/infrastructures', res.headers['location']) - self.assertEquals(flash.call_args_list[0][0], ("Operation 'terminate' successfully made on VM ID: 0", 'success')) + self.assertEquals(flash.call_args_list[0][0], ("Operation 'terminate' successfully made on VM ID: 0", + 'success')) @patch("app.utils.getUserAuthData") @patch('requests.put')