Fixed scope checking in UserTokenListAPIHandler

This commit is contained in:
0mar
2021-04-20 14:55:36 +02:00
parent b9958e9069
commit 399203e5d3
2 changed files with 10 additions and 8 deletions

View File

@@ -1311,7 +1311,7 @@ async def test_get_new_token(app, headers, status, note, expires_in):
[
('admin', 'other', 200),
('admin', 'missing', 404),
('user', 'other', 403),
('user', 'other', 404),
('user', 'user', 200),
],
)