Skip to content

Commit

Permalink
Removing unnecessary import
Browse files Browse the repository at this point in the history
  • Loading branch information
LDiazN committed Jan 17, 2025
1 parent 6cd9426 commit c69b37d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ooniapi/services/ooniprobe/tests/test_probe_auth.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from ooniprobe.common import auth
from httpx import Response


def test_register(client):
Expand Down Expand Up @@ -35,7 +34,7 @@ def test_register_then_login(client, jwt_encryption_key):
assert resp.status_code == 401

def postj(client, url, **kw):
response : Response = client.post(url, json=kw)
response = client.post(url, json=kw)
assert response.status_code == 200, f"Error: {response.content}"
assert response.headers.get('content-type') == 'application/json'
return response.json()
Expand Down

0 comments on commit c69b37d

Please sign in to comment.