﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33315	A little question about writing your first Django application, Part 5	Rice-777	nobody	"In ""Testing our new view"", I ran the code copied from the web page, and the running results did not match the expectations. The running results are as follows:

FAILED (failures=3)

Every errot is like this:  AssertionError: Lists differ: ['<Question: Past question.>'] != [<Question: Past question.>]

So, I checked the source code of ""assertQuerysetEqual()"" and found the line ""items = map(transform, qs)"" 

cause each element in the list has more quotation marks

and then, I changed the ""assertQuerysetEqual(response.context['latest_question_list'], [question],)"" to ""assertEqual(list(response.context['latest_question_list']), [question])""

Run again, the code works normally this time, The results are as follows: 

Creating test database for alias 'default'...
System check identified no issues (0 silenced).
........
----------------------------------------------------------------------
Ran 8 tests in 0.065s

OK
Destroying test database for alias 'default'...

In addition: this code does not show the running results on the website

"	Bug	closed	Documentation	3.2	Normal	invalid			Unreviewed	0	0	0	0	0	0
