@@ -679,7 +679,7 @@ class PluginD(Plugin):
679679 pass
680680
681681
682- def test__multibind_list_of_plugins ():
682+ def test_multibind_list_of_plugins ():
683683 def configure (binder : Binder ):
684684 binder .multibind (List [Plugin ], to = PluginA )
685685 binder .multibind (List [Plugin ], to = [PluginB , PluginC ()])
@@ -694,7 +694,7 @@ def configure(binder: Binder):
694694 assert isinstance (plugins [3 ], PluginD )
695695
696696
697- def test__multibind_dict_of_plugins ():
697+ def test_multibind_dict_of_plugins ():
698698 def configure (binder : Binder ):
699699 binder .multibind (Dict [str , Plugin ], to = {'a' : PluginA })
700700 binder .multibind (Dict [str , Plugin ], to = {'b' : PluginB , 'c' : PluginC ()})
@@ -709,7 +709,7 @@ def configure(binder: Binder):
709709 assert isinstance (plugins ['d' ], PluginD )
710710
711711
712- def test__multibinding_to_non_generic_type_raises_error ():
712+ def test_multibinding_to_non_generic_type_raises_error ():
713713 def configure_list (binder : Binder ):
714714 binder .multibind (List , to = [1 ])
715715
0 commit comments