diff options
author | 2018-07-29 11:41:28 +0200 | |
---|---|---|
committer | 2018-07-29 11:41:28 +0200 | |
commit | b7f3cc086bdd27e7fb8a656ad66348b6bf489268 (patch) | |
tree | 3c41f029f67adda015590ed6553b1dbf30c2aabf /tests/test_clean_logs.py | |
parent | Fixed broken test (diff) |
Addressing gdude comments
Diffstat (limited to '')
-rw-r--r-- | tests/test_clean_logs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_clean_logs.py b/tests/test_clean_logs.py index 886a4c3a..1c3449b4 100644 --- a/tests/test_clean_logs.py +++ b/tests/test_clean_logs.py @@ -9,7 +9,7 @@ class TestCleanLogAPI(SiteTest): Tests submitting a clean log and verifies that we get a UUID in return. - Then tests that + Also ensures that we get a 400 if we send in bad data. """ def test_returns_400_on_bad_data(self): @@ -31,7 +31,7 @@ class TestCleanLogAPI(SiteTest): { "author": "something", "user_id": "12345151", - "role": "awful", + "role_id": "4818413", "content": "testy", "timestamp": "this way comes", "embeds": [{"fire":"nanny"}], |