Commit bc35b952 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Fixed test failures introduced in e16c48e0.

parent e12aad2d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ class Person(models.Model):
    name = models.CharField(max_length=100)
    gender = models.IntegerField(choices=GENDER_CHOICES)
    age = models.IntegerField(default=21)
    alive = models.BooleanField()
    alive = models.BooleanField(default=True)

    def __str__(self):
        return self.name
+2 −2
Original line number Diff line number Diff line
@@ -24,14 +24,14 @@ class Restaurant(models.Model):
@python_2_unicode_compatible
class Bar(models.Model):
    place = models.OneToOneField(Place)
    serves_cocktails = models.BooleanField()
    serves_cocktails = models.BooleanField(default=True)

    def __str__(self):
        return "%s the bar" % self.place.name

class UndergroundBar(models.Model):
    place = models.OneToOneField(Place, null=True)
    serves_cocktails = models.BooleanField()
    serves_cocktails = models.BooleanField(default=True)

@python_2_unicode_compatible
class Favorites(models.Model):