diff --git a/tests/unit/wiring/test_wiring_with_wraps_decorator_py36.py b/tests/unit/wiring/test_wiring_with_wraps_decorator_py36.py index da853933..f913ed33 100644 --- a/tests/unit/wiring/test_wiring_with_wraps_decorator_py36.py +++ b/tests/unit/wiring/test_wiring_with_wraps_decorator_py36.py @@ -21,7 +21,7 @@ def container(): def decorator1(func): @functools.wraps(func) @inject - def wrapper(value1: str = Provide[Container.config.value1]): + def wrapper(value1: int = Provide[Container.config.value1]): result = func() return result + value1 return wrapper @@ -30,7 +30,7 @@ def decorator1(func): def decorator2(func): @functools.wraps(func) @inject - def wrapper(value2: str = Provide[Container.config.value2]): + def wrapper(value2: int = Provide[Container.config.value2]): result = func() return result + value2 return wrapper