diff options
| author | Alasdair Nicol <alasdair@memset.com> | 2013-10-18 01:24:41 +0100 |
|---|---|---|
| committer | Alasdair Nicol <alasdair@memset.com> | 2013-10-18 01:28:32 +0100 |
| commit | 65d1d65d52a87bba22845bcb7c3c921a8789ec19 (patch) | |
| tree | 872e3bb19d81395d60f13019844a042cb00252f5 /tests/admin_changelist/tests.py | |
| parent | dfb4cb9970f86487f0aaa88c5dfcfafa31e4f430 (diff) | |
Fixed #21267 -- Fixed E502 pep8 warnings
Diffstat (limited to 'tests/admin_changelist/tests.py')
| -rw-r--r-- | tests/admin_changelist/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_changelist/tests.py b/tests/admin_changelist/tests.py index 54a4993171..ec62a02f3b 100644 --- a/tests/admin_changelist/tests.py +++ b/tests/admin_changelist/tests.py @@ -168,7 +168,7 @@ class ChangeListTests(TestCase): m.list_display = ['id', 'name', 'parent'] m.list_display_links = ['id'] m.list_editable = ['name'] - self.assertRaises(IncorrectLookupParameters, lambda: \ + self.assertRaises(IncorrectLookupParameters, lambda: ChangeList(request, Child, m.list_display, m.list_display_links, m.list_filter, m.date_hierarchy, m.search_fields, m.list_select_related, m.list_per_page, m.list_max_show_all, m.list_editable, m)) |
