Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
anikaweinmann committed Dec 12, 2024
1 parent 45c96fa commit 647a6d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_resource_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ def create_user(
# We need to create an HTML basic authorization header
cls.auth_header[role] = Headers()
cls.auth_header[role].add(
"Authorization", f"Basic {base64.b64encode(auth).decode()}",
"Authorization",
f"Basic {base64.b64encode(auth).decode()}",
)

# Make sure the user database is empty
Expand Down
1 change: 1 addition & 0 deletions tests/testsuite.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

class ActiniaTestCase(unittest.TestCase):
"""Actinia test case class."""

# guest = None
# admin = None
# superadmin = None
Expand Down

0 comments on commit 647a6d3

Please sign in to comment.