From db55685488a28639df3fb153742960772857f3e4 Mon Sep 17 00:00:00 2001 From: Houkime <> Date: Wed, 7 Dec 2022 14:51:28 +0000 Subject: [PATCH] test(tokens-repo): use 'repo' for consistency --- tests/test_graphql/test_repository/test_tokens_repository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_graphql/test_repository/test_tokens_repository.py b/tests/test_graphql/test_repository/test_tokens_repository.py index 957ceb4..c561775 100644 --- a/tests/test_graphql/test_repository/test_tokens_repository.py +++ b/tests/test_graphql/test_repository/test_tokens_repository.py @@ -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)