aboutsummaryrefslogtreecommitdiffstats
path: root/api/tests
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-10-26 19:42:28 +0200
committerGravatar Johannes Christ <[email protected]>2018-10-26 19:42:28 +0200
commit6faa188d24cd4b8d8ddcd445e5689cb6d9e0fec4 (patch)
tree117a627b6cd10d3a05e3e5c46748733de79cd9fe /api/tests
parentFixed linting (diff)
Use proper `noqa` comment.
Diffstat (limited to 'api/tests')
-rw-r--r--api/tests/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/tests/base.py b/api/tests/base.py
index 395dc55c..5d8ccf8c 100644
--- a/api/tests/base.py
+++ b/api/tests/base.py
@@ -5,7 +5,7 @@ from rest_framework.test import APITestCase
test_user, _created = User.objects.get_or_create(
username='test',
- password='testpass', # flake8: noqa - S106
+ password='testpass', # noqa: S106
is_superuser=True,
is_staff=True
)