forked from p15670423/monkey
UT: Fix typehint in credentials conftest.py
This commit is contained in:
parent
233090942a
commit
16a59a3f5a
|
@ -1,4 +1,4 @@
|
||||||
from typing import List
|
from typing import List, Union
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ def valid_ntlm_hash() -> str:
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
@pytest.fixture(scope="session")
|
||||||
def invalid_ntlm_hashes() -> List[str]:
|
def invalid_ntlm_hashes() -> List[Union[str, int, float]]:
|
||||||
return [
|
return [
|
||||||
0,
|
0,
|
||||||
1,
|
1,
|
||||||
|
|
Loading…
Reference in New Issue