Skip to content

Commit 43852fc

Browse files
committed
test: fix space creation request
1 parent 9d6940c commit 43852fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/gui/shared/scripts/helpers/SpaceHelper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def get_share_endpint():
2727

2828

2929
def create_space(space_name):
30-
body = json.dumps({"Name": space_name})
30+
body = json.dumps({"name": space_name})
3131
response = request.post(get_space_endpint(), body)
3232
if response.status_code != 201:
3333
raise Exception(

0 commit comments

Comments
 (0)