diff options
author | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
commit | ee3e224e396494cd0d69bb6167087a071a20349c (patch) | |
tree | 5becd28570e58a03c6e1e231d0db24c264a73f88 /testenv/tests/validators/test_auth.py | |
parent | 4b75221e9470b4a009955d7677f16adf8e23e302 (diff) |
new typing style
Diffstat (limited to 'testenv/tests/validators/test_auth.py')
-rw-r--r-- | testenv/tests/validators/test_auth.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testenv/tests/validators/test_auth.py b/testenv/tests/validators/test_auth.py index ad56bbe0..789d8ece 100644 --- a/testenv/tests/validators/test_auth.py +++ b/testenv/tests/validators/test_auth.py @@ -20,7 +20,6 @@ # ========================================================================== # -from typing import List from typing import Any import pytest @@ -72,7 +71,7 @@ def test_fail__valid_user(arg: Any) -> None: (", foo, ", ["foo"]), ([], []), ]) -def test_ok__valid_users_list(arg: Any, retval: List) -> None: +def test_ok__valid_users_list(arg: Any, retval: list) -> None: assert valid_users_list(arg) == retval |