Skip to content

Commit

Permalink
fix test token not existing
Browse files Browse the repository at this point in the history
  • Loading branch information
natthan-pigoux committed Nov 5, 2024
1 parent 523cf68 commit 2a19497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions diracx-core/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,10 @@ def test_get_token_valid_input_credential():


def test_get_token_input_token_not_exists(token_setup):
_, token_location, access_token = token_setup
_, token_location, _ = token_setup
result = get_token(

Check failure on line 276 in diracx-core/tests/test_utils.py

View workflow job for this annotation

GitHub Actions / Unit test - ./diracx-core

test_get_token_input_token_not_exists TypeError: get_token() got an unexpected keyword argument 'token_endpoint'
location=token_location,
token=access_token,
token=None,
token_endpoint="",
client_id="ID",
verify=False,
Expand Down

0 comments on commit 2a19497

Please sign in to comment.