Are you reusing an old database or something? There should be only two 
users in the database prior to testing that section.

# Create two users so we can filter by is_staff when handing our
# wizard a queryset keyword argument.
self.normal_user = User.objects.create(username='test1', 
email='nor...@example.com')
self.staff_user = User.objects.create(username='test2', 
email='st...@example.com', is_staff=True)


See line 369

https://github.com/django/django/blob/stable/1.5.x/django/contrib/formtools/tests/wizard/wizardtests/tests.py

K



On Saturday, September 14, 2013 3:35:06 PM UTC-7, Ryan Boggs wrote:

AssertionError: 2 != 3
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to