Skip to content

Commit

Permalink
Fixed tests for Django 1.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo13 committed Mar 25, 2013
1 parent a441556 commit cbe89e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class User(models.Model):

status = models.IntegerField(choices=STATUS_CHOICES, default=0)

is_active = models.BooleanField()
is_active = models.BooleanField(default=False)

favorite_books = models.ManyToManyField('Book', related_name='lovers')

Expand Down

0 comments on commit cbe89e6

Please sign in to comment.