Skip to content

Commit

Permalink
Adjust test for singular role creation response
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Dec 13, 2020
1 parent 5deeb59 commit 8547422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy_test/base/populators.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def create_role(self, user_ids, description=None):
}
role_response = self.galaxy_interactor.post("roles", data=payload, admin=True)
assert role_response.status_code == 200
return role_response.json()[0]
return role_response.json()

def create_quota(self, quota_payload):
quota_response = self.galaxy_interactor.post("quotas", data=quota_payload, admin=True)
Expand Down

0 comments on commit 8547422

Please sign in to comment.