docs(contributing.rst): fix parameter value in example test code

The value must be False according to the case test.
This commit is contained in:
Nitai Bezerra da Silva 2021-01-09 16:29:41 +01:00
parent 94d4adc8e2
commit 85650a2047
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ useful when testing components that depend on each other:
def test_downgrade_not_superuser_skips_email(factories, mocker): def test_downgrade_not_superuser_skips_email(factories, mocker):
mocked_notify = mocker.patch('funkwhale_api.myapp.notifications.notify') mocked_notify = mocker.patch('funkwhale_api.myapp.notifications.notify')
user = factories['users.User'](is_superuser=True) user = factories['users.User'](is_superuser=False)
users.downgrade_user(user) users.downgrade_user(user)
# here, we ensure no email was sent # here, we ensure no email was sent