This is the full stack trace for all the 4 errors that I get when run the test. And sorry for the old super. :)
======================================================================
ERROR: test_form_renders_text_input (lists.tests.test_forms.ExistingListItemForm)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/jonathan/Documents/Dropbox/Education/tutorials/obeygoat/lists/tests/test_forms.py", line 14, in test_form_renders_text_input
form = ExistingListItemForm(for_list=list_)
TypeError: __init__() got an unexpected keyword argument 'for_list'
======================================================================
ERROR: test_form_save_handles_saving_to_a_list (lists.tests.test_forms.ExistingListItemForm)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/jonathan/Documents/Dropbox/Education/tutorials/obeygoat/lists/tests/test_forms.py", line 35, in test_form_save_handles_saving_to_a_list
form = ExistingListItemForm(data={'text': 'do me'})
TypeError: __init__() got an unexpected keyword argument 'data'
======================================================================
ERROR: test_form_validation_for_blank_items (lists.tests.test_forms.ExistingListItemForm)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/jonathan/Documents/Dropbox/Education/tutorials/obeygoat/lists/tests/test_forms.py", line 19, in test_form_validation_for_blank_items
form = ExistingListItemForm(for_list=list_, data={'text': ''})
TypeError: __init__() got an unexpected keyword argument 'for_list'
======================================================================
ERROR: test_form_validation_for_duplicate_items (lists.tests.test_forms.ExistingListItemForm)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/jonathan/Documents/Dropbox/Education/tutorials/obeygoat/lists/tests/test_forms.py", line 29, in test_form_validation_for_duplicate_items
form = ExistingListItemForm(for_list=list_, data={'text': 'no twins!'})
TypeError: __init__() got an unexpected keyword argument 'for_list'
----------------------------------------------------------------------