test(tokens-repo): use 'repo' for consistency

pull/26/head
Houkime 2022-12-07 14:51:28 +00:00
parent 3921d9fe4c
commit db55685488
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ def test_get_tokens(some_tokens_repo):
repo = some_tokens_repo
tokenstrings = []
# we cannot insert tokens directly via api, so we check meta-properties instead
for token in some_tokens_repo.get_tokens():
for token in repo.get_tokens():
len(token.token) == 43 # assuming secrets.token_urlsafe
assert token.token not in tokenstrings
tokenstrings.append(token.token)