@ -393,7 +393,7 @@ class TestTaskExecutor(unittest.TestCase):
mock_connection = MagicMock ( )
mock_templar = MagicMock ( )
action = ' namespace.prefix_suf ix'
action = ' namespace.prefix_suf f ix'
te . _task . action = action
handler = te . _get_action_handler ( mock_connection , mock_templar )
@ -428,8 +428,8 @@ class TestTaskExecutor(unittest.TestCase):
mock_connection = MagicMock ( )
mock_templar = MagicMock ( )
action = ' namespace.netconf_suf ix'
module_prefix = action . split ( ' .' ) [ - 1 ] . split ( ' _' ) [ 0 ]
action = ' namespace.netconf_suf f ix'
module_prefix = action . split ( ' _' ) [ 0 ]
te . _task . action = action
handler = te . _get_action_handler ( mock_connection , mock_templar )
@ -439,7 +439,7 @@ class TestTaskExecutor(unittest.TestCase):
mock . call ( module_prefix , collection_list = te . _task . collections ) ] )
action_loader . get . assert_called_once_with (
' netconf ' , task = te . _task , connection = mock_connection ,
module_prefix , task = te . _task , connection = mock_connection ,
play_context = te . _play_context , loader = te . _loader ,
templar = mock_templar , shared_loader_obj = te . _shared_loader_obj ,
collection_list = te . _task . collections )
@ -463,8 +463,8 @@ class TestTaskExecutor(unittest.TestCase):
mock_connection = MagicMock ( )
mock_templar = MagicMock ( )
action = ' namespace.prefix_suf ix'
module_prefix = action . split ( ' .' ) [ - 1 ] . split ( ' _' ) [ 0 ]
action = ' namespace.prefix_suf f ix'
module_prefix = action . split ( ' _' ) [ 0 ]
te . _task . action = action
handler = te . _get_action_handler ( mock_connection , mock_templar )