Skip to content

Commit

Permalink
fix: lint test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pythreeopenAI committed May 30, 2024
1 parent 1136877 commit 692ccf0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ class KeycloakTestEnv(object):

def __init__(
self,
host: str = "localhost", # os.environ["KEYCLOAK_HOST"],
port: str = "8080", # os.environ["KEYCLOAK_PORT"],
username: str = "admin", # os.environ["KEYCLOAK_ADMIN"],
password: str = "admin", # os.environ["KEYCLOAK_ADMIN_PASSWORD"],
host: str = os.environ["KEYCLOAK_HOST"],
port: str = os.environ["KEYCLOAK_PORT"],
username: str = os.environ["KEYCLOAK_ADMIN"],
password: str = os.environ["KEYCLOAK_ADMIN_PASSWORD"],
):
"""Init method.
Expand Down

0 comments on commit 692ccf0

Please sign in to comment.