Skip to content

Commit

Permalink
Remove trailing slash from client tests
Browse files Browse the repository at this point in the history
  • Loading branch information
olexh committed Aug 22, 2024
1 parent 916344a commit 120fd3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/client_requests/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
def request_client_create(client, token: str, name: str, description: str, endpoint: str):
return client.post(
"/client/",
"/client",
headers={"Auth": token},
json={
"name": name,
Expand Down Expand Up @@ -53,7 +53,7 @@ def request_client_delete(

def request_list_clients(client, token: str):
return client.get(
"/client/",
"/client",
headers={"Auth": token},
)

Expand Down

0 comments on commit 120fd3e

Please sign in to comment.