From e7690b0dd182611324b2b8a459759d5cb04e6d0a Mon Sep 17 00:00:00 2001 From: nitzmahone Date: Mon, 11 Jul 2016 13:23:04 -0700 Subject: [PATCH] Revert "update action unit test for powershell shebang behavior" This reverts commit 637f6f23e130fe8a707813e59b919bf84433f718. --- test/units/plugins/action/test_action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/plugins/action/test_action.py b/test/units/plugins/action/test_action.py index 2420fef99d9..440b2e2aaab 100644 --- a/test/units/plugins/action/test_action.py +++ b/test/units/plugins/action/test_action.py @@ -231,7 +231,7 @@ class TestActionBase(unittest.TestCase): mock_connection.module_implementation_preferences = ('.ps1',) (style, shebang, data) = action_base._configure_module('stat', mock_task.args) self.assertEqual(style, "new") - self.assertEqual(shebang, u'#!powershell') + self.assertEqual(shebang, None) # test module not found self.assertRaises(AnsibleError, action_base._configure_module, 'badmodule', mock_task.args)