remove filtering of test messages from jobs

this is now down on the api side
This commit is contained in:
Leo Hemsted
2016-10-11 14:50:06 +01:00
committed by Chris Hill-Scott
parent ee8ac59d70
commit e4f0656a32
5 changed files with 0 additions and 5 deletions

View File

@@ -27,7 +27,6 @@ def test_get_jobs_should_return_list_of_all_real_jobs(
assert page.h1.string == 'Uploaded files'
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
def test_get_jobs_shows_page_links(