From 9b0e56dc90eed67cca795c0b76b38b844a81ead5 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Fri, 30 May 2014 15:43:34 +0100 Subject: [PATCH] Fixed invalid numchild values in test fixtures --- wagtail/tests/fixtures/test.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wagtail/tests/fixtures/test.json b/wagtail/tests/fixtures/test.json index 625c5618b..11b82d9f1 100644 --- a/wagtail/tests/fixtures/test.json +++ b/wagtail/tests/fixtures/test.json @@ -39,7 +39,7 @@ "model": "wagtailcore.page", "fields": { "title": "Events", - "numchild": 2, + "numchild": 3, "show_in_menus": true, "live": true, "depth": 3, @@ -62,7 +62,7 @@ "model": "wagtailcore.page", "fields": { "title": "Christmas", - "numchild": 1, + "numchild": 0, "show_in_menus": true, "live": true, "depth": 4, @@ -90,7 +90,7 @@ "model": "wagtailcore.page", "fields": { "title": "Tentative Unpublished Event", - "numchild": 1, + "numchild": 0, "show_in_menus": true, "live": false, "depth": 4, @@ -118,7 +118,7 @@ "model": "wagtailcore.page", "fields": { "title": "Someone Else's Event", - "numchild": 1, + "numchild": 0, "show_in_menus": true, "live": false, "depth": 4,