Skip to content

Commit

Permalink
test: fix space creation request
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed Oct 24, 2024
1 parent b304816 commit e0cd16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gui/shared/scripts/helpers/SpaceHelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_share_endpint():


def create_space(space_name):
body = json.dumps({"Name": space_name})
body = json.dumps({"name": space_name})
response = request.post(get_space_endpint(), body)
if response.status_code != 201:
raise Exception(
Expand Down

0 comments on commit e0cd16e

Please sign in to comment.