diff options
author | 2018-07-22 21:13:09 +0200 | |
---|---|---|
committer | 2018-07-22 21:13:09 +0200 | |
commit | f967721b6e7acc827f5242e211d9a46a0f9aaddf (patch) | |
tree | deaabdf3416d516b1affcd9c23ef43b9c53ff560 /tests | |
parent | fixed tests that were breaking. hooo-ey. (diff) |
Now doing role colorization instead of random colors for the cleanlog template.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_clean_logs.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_clean_logs.py b/tests/test_clean_logs.py index 210306c0..4932b4b6 100644 --- a/tests/test_clean_logs.py +++ b/tests/test_clean_logs.py @@ -29,8 +29,9 @@ class TestCleanLogAPI(SiteTest): good_data = json.dumps({ "log_data": [ { - "author": "something", - "content": "testy", + "author": "something", + "role": "awful", + "content": "testy", "timestamp": "this way comes" } ] |