Author: mtredinnick
Date: 2011-08-22 23:28:45 -0700 (Mon, 22 Aug 2011)
New Revision: 16667

Modified:
   django/trunk/tests/regressiontests/queries/models.py
Log:
Fixed a broken test from r16656.

Modified: django/trunk/tests/regressiontests/queries/models.py
===================================================================
--- django/trunk/tests/regressiontests/queries/models.py        2011-08-23 
06:00:08 UTC (rev 16666)
+++ django/trunk/tests/regressiontests/queries/models.py        2011-08-23 
06:28:45 UTC (rev 16667)
@@ -319,13 +319,13 @@
        return self.name
 
 class SimpleCategory(models.Model):
-    name = models.CharField(max_length=10)
+    name = models.CharField(max_length=15)
 
     def __unicode__(self):
         return self.name
 
 class SpecialCategory(SimpleCategory):
-    special_name = models.CharField(max_length=10)
+    special_name = models.CharField(max_length=15)
 
     def __unicode__(self):
         return self.name + " " + self.special_name
@@ -337,9 +337,9 @@
            return "category item: " + str(self.category)
 
 class OneToOneCategory(models.Model):
-    new_name = models.CharField(max_length=10)
+    new_name = models.CharField(max_length=15)
     category = models.OneToOneField(SimpleCategory)
 
     def __unicode__(self):
         return "one2one " + self.new_name
-    
\ No newline at end of file
+    

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to