We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dabfaa commit 2ca44a0Copy full SHA for 2ca44a0
tests/unit/wiring/string_ids/test_main_py36.py
@@ -33,9 +33,9 @@ def subcontainer():
33
container.unwire()
34
35
36
-@fixture
37
-def resourceclosing_container():
38
- container = resourceclosing.Container()
+@fixture(params=[resourceclosing.Container, resourceclosing.ContainerSingleton])
+def resourceclosing_container(request):
+ container = request.param()
39
container.wire(modules=[resourceclosing])
40
yield container
41
0 commit comments