Fix simple typo: unpiblished -> unpublished

pull/5720/head
Tim Gates 2019-11-19 08:04:04 +11:00 zatwierdzone przez Matt Westcott
rodzic d37d5c1c60
commit c54c4aa4eb
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -422,6 +422,7 @@ Contributors
* Aliosha Padovani
* Tom Readings
* Andrey Smirnov
* Tim Gates
Translators
===========

Wyświetl plik

@ -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)