Fix linter fails with the CI (#497)

This commit is contained in:
Humberto Rocha 2023-02-04 23:33:01 -05:00 committed by GitHub
parent 94271b34ac
commit 21e286c5d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -23,7 +23,7 @@ def test_visible_follows_disabled(client, identity):
"""
Config.set_identity(identity, "visible_follows", True)
response = client.get(identity.urls.view)
assertContains(response, 'follower', status_code=200)
assertContains(response, "follower", status_code=200)
Config.set_identity(identity, "visible_follows", False)
response = client.get(identity.urls.view)
assertNotContains(response, 'follower', status_code=200)
assertNotContains(response, "follower", status_code=200)