diff --git a/tests/dashboards/api_tests.py b/tests/dashboards/api_tests.py index ea6708d4d77a0..50239b7ee74c6 100644 --- a/tests/dashboards/api_tests.py +++ b/tests/dashboards/api_tests.py @@ -882,7 +882,7 @@ def test_create_dashboard_validate_roles(self): rv = self.client.post(uri, json=dashboard_data) self.assertEqual(rv.status_code, 422) response = json.loads(rv.data.decode("utf-8")) - expected_response = {"message": {"roles": ["Some roles do not exis"]}} + expected_response = {"message": {"roles": ["Some roles do not exist"]}} self.assertEqual(response, expected_response) def test_create_dashboard_validate_json(self):