#33332: Writing your first Django app, part 5 - error please help me.
---------------------------------------------+------------------------
Reporter: seoyule | Owner: nobody
Type: Uncategorized | Status: new
Component: Testing framework | Version: 3.2
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 0
UI/UX: 0 |
---------------------------------------------+------------------------
Hi Thank you for the great tutorial.
I'm shadowing this tutorial but keep encountering the following error:
AssertionError: Lists differ: <Question: Past question.>? != [<Question:
Past question.>]
**Below is the related code
def test_past_question(self):
question = create_question(question_text="Past question.",
days=-30)
response = self.client.get(reverse('polls:index'))
self.assertQuerysetEqual(
response.context['latest_question_list'],
[question]
)
** And below is the error message.
======================================================================
FAIL: test_past_question (polls.tests.QuestionIndexViewTests)
======================================================================
Traceback (most recent call last):
File "/Users/seoyulejo/projects/mysite3/polls/tests.py", line 50, in
test_past_question
self.assertQuerysetEqual(
File "/Users/seoyulejo/venvs/mysite/lib/python3.8/site-
packages/django/test/testcases.py", line 1052, in assertQuerysetEqual
return self.assertEqual(list(items), values, msg=msg)
AssertionError: Lists differ: ['<Question: Past question.>'] !=
[<Question: Past question.>]
First differing element 0:
'<Question: Past question.>'
<Question: Past question.>
- ['<Question: Past question.>']
? - -
+ [<Question: Past question.>]
Could anyone help me find out the reason of the error?
Thank you so much
--
Ticket URL: <https://code.djangoproject.com/ticket/33332>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/050.002b7a458dca7a333414ca195f2fac74%40djangoproject.com.