Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 22, 2024
1 parent 2e78c44 commit 4ffc4bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ def auth_polling_response():
responses.add(
responses.POST,
urljoin(BASE_URL, AUTH_POLLING_ENDPOINT),
json={
"access_token": "an_access_token",
"refresh_token": "a_refresh_token"
},
json={"access_token": "an_access_token", "refresh_token": "a_refresh_token"},
status=200,
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_signup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_signup_ok():
client = TgtgClient().signup_by_email(email="[email protected]")
assert client.access_token == "an_access_token"
assert client.refresh_token == "a_refresh_token"
\


def test_signup_fail():
responses.add(
Expand Down

0 comments on commit 4ffc4bc

Please sign in to comment.