From 1c13d6afe22189f003ebf962bdadd0fa4c6f76d7 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Sun, 2 Jun 2024 07:28:47 +0200 Subject: [PATCH] test if there is user["deleted"] --- bioblend/_tests/TestGalaxyUsers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bioblend/_tests/TestGalaxyUsers.py b/bioblend/_tests/TestGalaxyUsers.py index a833fcec0..c58e75f41 100644 --- a/bioblend/_tests/TestGalaxyUsers.py +++ b/bioblend/_tests/TestGalaxyUsers.py @@ -11,6 +11,7 @@ def test_get_users(self): for user in users: assert user["id"] is not None assert user["email"] is not None + assert user["deleted"] is not None def test_show_user(self): current_user = self.gi.users.get_current_user()