1
0
mirror of https://github.com/django/django.git synced 2025-10-29 00:26:07 +00:00

Removed unneeded u prefixes

This commit is contained in:
Claude Paroz
2012-06-19 17:37:28 +02:00
parent 41eb70f762
commit f08fa5b555
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ class TestNoInitialDataLoading(TransactionTestCase):
# Test presence of fixture (flush called by TransactionTestCase)
self.assertQuerysetEqual(
Book.objects.all(), [
u'Achieving self-awareness of Python programs'
'Achieving self-awareness of Python programs'
],
lambda a: a.name
)