Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Fix bug 1239380: Fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Jan 15, 2016
1 parent 605767f commit dc01f40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kuma/core/tests/test_commands.py
Expand Up @@ -27,5 +27,5 @@ def test_user_exists(self):
call_command('ihavepower', 'fordprefect', stdout=out)

ford = self.user_model.objects.get(username='fordprefect')
assert ford.is_staff == True
assert ford.is_superuser == True
assert ford.is_staff is True
assert ford.is_superuser is True

0 comments on commit dc01f40

Please sign in to comment.