From aa1eb32b4c4992f8d40c73b5d691e43a885d71a3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 3 Aug 2022 14:11:15 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- jupyterhub/tests/test_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyterhub/tests/test_app.py b/jupyterhub/tests/test_app.py index 8c2b2de0..95eb5882 100644 --- a/jupyterhub/tests/test_app.py +++ b/jupyterhub/tests/test_app.py @@ -251,10 +251,10 @@ async def test_load_groups(tmpdir, request): hub.init_db() db = hub.db await hub.init_role_creation() - + await hub.init_users() await hub.init_groups() - + blue = orm.Group.find(db, name='blue') assert blue is not None assert sorted(u.name for u in blue.users) == sorted(to_load['blue']['users'])