Add type hints to core tests (#88478)

This commit is contained in:
epenet
2023-02-20 11:42:56 +01:00
committed by GitHub
parent 26755a6841
commit 5f25b71df7
59 changed files with 1068 additions and 547 deletions

View File

@@ -200,7 +200,7 @@ def test_throttle_on_two_method() -> None:
@patch.object(util, "random")
def test_get_random_string(mock_random):
def test_get_random_string(mock_random) -> None:
"""Test get random string."""
results = ["A", "B", "C"]