diff options
| author | Tim Graham <timograham@gmail.com> | 2015-11-19 15:33:22 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-11-19 16:44:16 -0500 |
| commit | 65764a9316b196006d4f0ee2cac773369805e56c (patch) | |
| tree | 088b53b42eac7ee9c62f25dcf38fd8656c9ff56b /tests/admin_views/admin.py | |
| parent | db8763fb239137e9f750d26df221483a8ae5c97c (diff) | |
Renamed __unicode__() to __str__() in some test comments.
Diffstat (limited to 'tests/admin_views/admin.py')
| -rw-r--r-- | tests/admin_views/admin.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/admin_views/admin.py b/tests/admin_views/admin.py index 0da6126c01..2db28c6f51 100644 --- a/tests/admin_views/admin.py +++ b/tests/admin_views/admin.py @@ -508,8 +508,7 @@ class CoverLetterAdmin(admin.ModelAdmin): """ A ModelAdmin with a custom get_queryset() method that uses defer(), to test verbose_name display in messages shown after adding/editing CoverLetter - instances. - Note that the CoverLetter model defines a __unicode__ method. + instances. Note that the CoverLetter model defines a __str__ method. For testing fix for ticket #14529. """ @@ -545,8 +544,7 @@ class TelegramAdmin(admin.ModelAdmin): """ A ModelAdmin with a custom get_queryset() method that uses only(), to test verbose_name display in messages shown after adding/editing Telegram - instances. - Note that the Telegram model defines a __unicode__ method. + instances. Note that the Telegram model defines a __str__ method. For testing fix for ticket #14529. """ |
