@@ -103,7 +103,7 @@ def network(project_id, network_id) -> Network:
103103
104104
105105@pytest .fixture
106- def patch_extend_subnet (mocker ) -> None :
106+ def _patch_extend_subnet (mocker ) -> None :
107107 """Ml2 Plugin extend subnet patch.
108108
109109 This patch is needed as the Ml2Plugin's _make_subnet_dict method is calling
@@ -119,7 +119,7 @@ def patch_extend_subnet(mocker) -> None:
119119
120120
121121@pytest .fixture
122- def ml2_plugin (patch_extend_subnet ) -> Ml2PluginNoInit :
122+ def ml2_plugin (_patch_extend_subnet ) -> Ml2PluginNoInit :
123123 return Ml2PluginNoInit ()
124124
125125
@@ -291,7 +291,7 @@ def understack_trunk_driver(understack_driver) -> UnderStackTrunkDriver:
291291
292292
293293@pytest .fixture
294- def ironic_baremetal_port_physical_network (mocker , understack_driver ) -> None :
294+ def _ironic_baremetal_port_physical_network (mocker , understack_driver ) -> None :
295295 mocker .patch .object (
296296 understack_driver .ironic_client ,
297297 "baremetal_port_physical_network" ,
@@ -300,12 +300,12 @@ def ironic_baremetal_port_physical_network(mocker, understack_driver) -> None:
300300
301301
302302@pytest .fixture (autouse = True )
303- def undersync_sync_devices_patch (mocker , understack_driver ) -> None :
303+ def _undersync_sync_devices_patch (mocker , understack_driver ) -> None :
304304 mocker .patch .object (understack_driver .undersync , "sync_devices" )
305305
306306
307307@pytest .fixture
308- def utils_fetch_subport_network_id_patch (mocker , network_id ) -> None :
308+ def _utils_fetch_subport_network_id_patch (mocker , network_id ) -> None :
309309 mocker .patch (
310310 "neutron_understack.utils.fetch_subport_network_id" ,
311311 return_value = str (network_id ),
@@ -354,7 +354,7 @@ def oslo_config():
354354
355355
356356@pytest .fixture
357- def ml2_understack_conf (oslo_config , ucvni_group_id ) -> None :
357+ def _ml2_understack_conf (oslo_config , ucvni_group_id ) -> None :
358358 oslo_config .config (
359359 ucvni_group = str (ucvni_group_id ),
360360 group = "ml2_understack" ,
0 commit comments