Skip to content

Commit bf696bd

Browse files
committed
fixup! style: Run black on the rest of the project.
1 parent b37d45b commit bf696bd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

backend/tests/test_api.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ def user():
3030
Create and return a test user.
3131
"""
3232
return User.objects.create_user(
33-
username="testuser", email="[email protected]", password="password123"
33+
username="testuser",
34+
35+
password="password123",
3436
)
3537

3638

@@ -40,7 +42,9 @@ def another_user():
4042
Create and return another test user.
4143
"""
4244
return User.objects.create_user(
43-
username="anotheruser", email="[email protected]", password="password123"
45+
username="anotheruser",
46+
47+
password="password123",
4448
)
4549

4650

0 commit comments

Comments
 (0)