summaryrefslogtreecommitdiff
path: root/tests/comment_tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/comment_tests')
-rw-r--r--tests/comment_tests/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/comment_tests/models.py b/tests/comment_tests/models.py
index 472b66decd..a2b27e7e87 100644
--- a/tests/comment_tests/models.py
+++ b/tests/comment_tests/models.py
@@ -30,7 +30,7 @@ class Entry(models.Model):
title = models.CharField(max_length=250)
body = models.TextField()
pub_date = models.DateField()
- enable_comments = models.BooleanField()
+ enable_comments = models.BooleanField(default=False)
def __str__(self):
return self.title