Commit 8c272473 authored by Anssi Kääriäinen's avatar Anssi Kääriäinen
Browse files

Added default value for a BooleanField in test models

Test models introduced for #10733 didn't contain default value for
a BooleanField(). Check command didn't like that -> check tests failed.
parent bf13c75c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -125,4 +125,4 @@ class B(Base):
class C(Base):
    c_a = models.ForeignKey(A)
    c_b = models.ForeignKey(B)
    is_published = models.BooleanField()
    is_published = models.BooleanField(default=False)