correct typo in docstring

Co-authored-by: Julien Constant <julienconstant190@gmail.com>
This commit is contained in:
thomas girod 2023-09-07 22:45:15 +02:00 committed by GitHub
parent d91c447c73
commit a51f57c28a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ class NewsTest(TestCase):
Test that moderated news can be viewed by anyone
and not moderated news only by com admins
"""
# by default a new isn't moderated
# by default a news isn't moderated
self.assertTrue(self.new.can_be_viewed_by(self.com_admin))
self.assertFalse(self.new.can_be_viewed_by(self.sli))
self.assertFalse(self.new.can_be_viewed_by(self.anonymous))