Skip to content

Update test_app.py #24

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Backend/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

def test_insert_user():
"""
Test for http://localhost:5170/add_newuser, adding user to database
Test for http://localhost:5000/add_newuser, adding user to database
"""
global UNIQUE_USER_ID
url = "http://localhost:5170"
url = "http://localhost:5000"

UNIQUE_USER_ID = requests.post((url + "/add_newuser"),
json={"username":"sam2213",
Expand Down