From b61e3ee00721dfc3248175b56a61af6d19eca0d2 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Mon, 19 Oct 2015 14:53:38 +0300 Subject: [PATCH] Fix test of Injection.value with catalog bundle --- tests/test_injections.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_injections.py b/tests/test_injections.py index 2226a2fc..dd8573bd 100644 --- a/tests/test_injections.py +++ b/tests/test_injections.py @@ -28,8 +28,7 @@ class InjectionTests(unittest.TestCase): """Test catalog.""" provider = di.Provider() - injection = di.Injection('some_arg_name', - TestCatalog.Bundle(TestCatalog.provider)) + injection = di.Injection(TestCatalog.Bundle(TestCatalog.provider)) self.assertIsInstance(injection.value, TestCatalog.Bundle)