Author: russellm
Date: 2008-08-22 09:07:50 -0500 (Fri, 22 Aug 2008)
New Revision: 8465

Modified:
   django/trunk/tests/regressiontests/views/fixtures/testdata.json
Log:
Fixed #8366: Modified a test fixture to remove an unnecessary forward 
reference. Thanks to Ramiro Morales for the suggestion.

Modified: django/trunk/tests/regressiontests/views/fixtures/testdata.json
===================================================================
--- django/trunk/tests/regressiontests/views/fixtures/testdata.json     
2008-08-22 13:59:41 UTC (rev 8464)
+++ django/trunk/tests/regressiontests/views/fixtures/testdata.json     
2008-08-22 14:07:50 UTC (rev 8465)
@@ -18,10 +18,17 @@
         }
     },
     {
-        "pk": 1, 
-        "model": "views.article", 
+        "pk": 1,
+        "model": "views.author",
         "fields": {
-            "author": 1, 
+            "name": "Boris"
+        }
+    },
+    {
+        "pk": 1,
+        "model": "views.article",
+        "fields": {
+            "author": 1,
             "title": "Old Article",
             "slug": "old_article",
             "date_created": "2001-01-01 21:22:23"
@@ -58,17 +65,10 @@
         }
     },
     {
-        "pk": 1, 
-        "model": "views.author", 
+        "pk": 1,
+        "model": "sites.site",
         "fields": {
-            "name": "Boris"
-        }
-    }, 
-    {
-        "pk": 1, 
-        "model": "sites.site", 
-        "fields": {
-            "domain": "testserver", 
+            "domain": "testserver",
             "name": "testserver"
         }
     }


--~--~---------~--~----~------------~-------~--~----~
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