Skip to content

Commit bdbf66c

Browse files
committed
Slightly tweak one test
1 parent 11042c7 commit bdbf66c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

injector_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ def test_multibind_scopes_applies_to_the_bound_items() -> None:
739739
def configure(binder: Binder) -> None:
740740
binder.multibind(List[Plugin], to=PluginA, scope=singleton)
741741
binder.multibind(List[Plugin], to=PluginB)
742-
binder.multibind(List[Plugin], to=PluginC, scope=singleton)
742+
binder.multibind(List[Plugin], to=[PluginC], scope=singleton)
743743

744744
injector = Injector([configure])
745745
first_list = injector.get(List[Plugin])

0 commit comments

Comments
 (0)