diff --git a/tests/app/main/views/test_jobs.py b/tests/app/main/views/test_jobs.py index ff82b8a9b..16506ff72 100644 --- a/tests/app/main/views/test_jobs.py +++ b/tests/app/main/views/test_jobs.py @@ -27,7 +27,7 @@ def test_should_return_list_of_all_real_jobs( assert response.status_code == 200 page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser') assert page.h1.string == 'Uploaded files' - jobs = [x.text for x in page.tbody.find_all('a', {'class':'file-list-filename'})] + jobs = [x.text for x in page.tbody.find_all('a', {'class': 'file-list-filename'})] assert len(jobs) == 4 assert 'Test message' not in jobs