Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit aa70935e authored by GotthardG's avatar GotthardG
Browse files

Clean up testfunctions.ipynb by removing redundant code

Removed outdated and unused code snippets from testfunctions.ipynb to streamline the notebook. This improves readability and reduces clutter, ensuring the file contains only relevant and functional code samples.
parent 590f36cd
No related branches found
No related tags found
No related merge requests found
Pipeline #48345 failed
......@@ -7,7 +7,7 @@ client = TestClient(app)
def authenticate():
# Simulate login to obtain token
response = client.post(
"/auth/token/login", json={"username": "testuser", "password": "testpass"}
"/auth/token/login", data={"username": "testuser", "password": "testpass"}
)
assert response.status_code == 200
return response.json()["access_token"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment