summaryrefslogtreecommitdiff
path: root/tests/model_inheritance/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_inheritance/tests.py')
-rw-r--r--tests/model_inheritance/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_inheritance/tests.py b/tests/model_inheritance/tests.py
index 173166a754..336ddf3e15 100644
--- a/tests/model_inheritance/tests.py
+++ b/tests/model_inheritance/tests.py
@@ -19,7 +19,7 @@ from .models import (
class ModelInheritanceTests(TestCase):
def test_abstract(self):
# The Student and Worker models both have 'name' and 'age' fields on
- # them and inherit the __unicode__() method, just as with normal Python
+ # them and inherit the __str__() method, just as with normal Python
# subclassing. This is useful if you want to factor out common
# information for programming purposes, but still completely
# independent separate models at the database level.