Skip to content

Commit

Permalink
Set default to none in test
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias authored Aug 22, 2023
1 parent ad4bc0d commit 1acce86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bioblend/_tests/TestGalaxyQuotas.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def test_update_quota_nondefault(self):
response = self.gi.quotas.update_quota(
self.quota["id"],
name=self.quota_name + "-updated",
)
default = None,
)
assert f"""Quota '{self.quota_name}' has been renamed to '{self.quota_name}-updated'""" in response
quota = self.gi.quotas.show_quota(self.quota["id"])
assert quota["default"] == "no"
Expand Down

0 comments on commit 1acce86

Please sign in to comment.