Skip to content

Commit 8e2f7b8

Browse files
committed
Fix test
1 parent 3034091 commit 8e2f7b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_api.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_adduser(hs5: Hs5Runner):
2020

2121
ses1 = requests.session()
2222

23-
response = ses1.post(url+"adduser", json={
23+
response = ses1.post(url+"addUser", json={
2424
"ses": "foobar",
2525
"username": "test",
2626
"password": "test"
@@ -37,7 +37,7 @@ def test_adduser(hs5: Hs5Runner):
3737
resp = response.json()
3838
sesVal = resp["ses"]
3939

40-
response = ses1.post(url+"adduser", json={
40+
response = ses1.post(url+"addUser", json={
4141
"ses": sesVal,
4242
"username": "test",
4343
"password": "test"

0 commit comments

Comments
 (0)