Skip to content

Commit

Permalink
fix: missing 't' :)
Browse files Browse the repository at this point in the history
  • Loading branch information
amitmiran137 authored Feb 2, 2021
1 parent 988f706 commit 9400161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dashboards/api_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 9400161

Please sign in to comment.