Fixed nonexistent field reference in test model __str__() method.

This commit is contained in:
Demur Nodia 2018-07-30 16:03:52 -04:00 committed by Tim Graham
parent c6238bf02b
commit c090ea97c1
1 changed files with 1 additions and 4 deletions

View File

@ -123,9 +123,6 @@ class OwnerProfile(models.Model):
class Restaurant(Place):
serves_pizza = models.BooleanField(default=False)
def __str__(self):
return self.name
class Product(models.Model):
slug = models.SlugField(unique=True)
@ -223,7 +220,7 @@ class Post(models.Model):
posted = models.DateField()
def __str__(self):
return self.name
return self.title
# Models for testing UUID primary keys