From f71016b4456476f3c345e4a47be26fc876fff609 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Wed, 24 Jul 2024 21:55:07 +0200 Subject: [PATCH] quota creation needs user id --- bioblend/_tests/TestGalaxyQuotas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bioblend/_tests/TestGalaxyQuotas.py b/bioblend/_tests/TestGalaxyQuotas.py index 0c5da9055..b662b2348 100644 --- a/bioblend/_tests/TestGalaxyQuotas.py +++ b/bioblend/_tests/TestGalaxyQuotas.py @@ -67,7 +67,7 @@ def test_update_non_default_quote(self): quota = self.gi.quotas.create_quota(name="non_default_quota", description="testing", amount="100 GB", operation="+", - in_users=[new_user['username']], + in_users=[new_user['id']], ) self.gi.quotas.update_quota(quota["id"], default="no", amount="200 GB")