From c54c4aa4eba63116d05a7f6bb7f5973a4f7575fc Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 19 Nov 2019 08:04:04 +1100 Subject: [PATCH] Fix simple typo: unpiblished -> unpublished --- CONTRIBUTORS.rst | 1 + wagtail/admin/tests/pages/test_unpublish_page.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 1dbcb60058..b9d497f05a 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -422,6 +422,7 @@ Contributors * Aliosha Padovani * Tom Readings * Andrey Smirnov +* Tim Gates Translators =========== diff --git a/wagtail/admin/tests/pages/test_unpublish_page.py b/wagtail/admin/tests/pages/test_unpublish_page.py index 820b357f87..cf5b285dc6 100644 --- a/wagtail/admin/tests/pages/test_unpublish_page.py +++ b/wagtail/admin/tests/pages/test_unpublish_page.py @@ -159,7 +159,7 @@ class TestPageUnpublishIncludingDescendants(TestCase, WagtailTestUtils): # Check that the page was unpublished self.assertFalse(SimplePage.objects.get(id=self.test_page.id).live) - # Check that the descendant pages were unpiblished as well + # Check that the descendant pages were unpublished as well self.assertFalse(SimplePage.objects.get(id=self.test_child_page.id).live) self.assertFalse(SimplePage.objects.get(id=self.test_another_child_page.id).live)