diff --git a/tests/pyright/test_file.py b/tests/pyright/test_file.py index f9db440..b4f0485 100644 --- a/tests/pyright/test_file.py +++ b/tests/pyright/test_file.py @@ -20,7 +20,7 @@ def decorator_with_invalid_param(fn=DECORATED): def test_normal_decorator(): @function_decorator - def decorator(scope="test", fn=DECORATED): # type: (str, Any) -> Callable[..., Any] + def decorator(scope="test", fn=DECORATED): # type: (int, Any) -> Callable[..., Any] return fn # Ok