Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 14, 2024
1 parent a1d1c41 commit 7a4fa9b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions conda-store-server/tests/user_journeys/test_user_journeys.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ def test_admin_login_and_delete_shared_environment(
environment = api.create_environment(
namespace,
specification_path,
).json()["data"]["specification"]["name"]
).json()["data"][
"specification"
]["name"]

api.delete_environment(namespace, environment)
api.delete_namespace(namespace)
Expand All @@ -83,14 +85,18 @@ def test_user_login_and_create_shared_environment(
base_url=base_url,
token=api.create_token(
namespace,
'developer',
).json()['data']['token']
"developer",
).json()[
"data"
]["token"],
)

environment = dev_api.create_environment(
namespace,
specification_path,
).json()["data"]["specification"]["name"]
).json()[
"data"
]["specification"]["name"]

api.delete_environment(namespace, environment)
api.delete_namespace(namespace)

0 comments on commit 7a4fa9b

Please sign in to comment.