From 839de5d527200c2f5c647f376e200694391e766f Mon Sep 17 00:00:00 2001 From: Gonzalo Martinez Date: Tue, 7 Jan 2025 12:26:14 -0800 Subject: [PATCH] Fix typing tests --- tests/typing/callable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/typing/callable.py b/tests/typing/callable.py index e5bed609..1cc61778 100644 --- a/tests/typing/callable.py +++ b/tests/typing/callable.py @@ -34,7 +34,7 @@ kwargs4: Dict[str, Any] = provider4.kwargs # Test 5: to check the provided instance interface provider5 = providers.Callable(Animal) -provided5: Animal = provider5.provided +provided5: Animal = provider5.provided() # Test 6: to check the DelegatedCallable provider6 = providers.DelegatedCallable(Cat)