diff --git a/tests/unit/modules/test_localemod.py b/tests/unit/modules/test_localemod.py index 5332367031..4a6ce052eb 100644 --- a/tests/unit/modules/test_localemod.py +++ b/tests/unit/modules/test_localemod.py @@ -329,7 +329,6 @@ class LocalemodTestCase(TestCase, LoaderModuleMockMixin): assert localemod.__salt__['file.replace'].call_args[0][1] == '^LANG=.*' assert localemod.__salt__['file.replace'].call_args[0][2] == 'LANG="{}"'.format(loc) - @patch('salt.utils.path.which', MagicMock(return_value=None)) @patch('salt.utils.path.which', MagicMock(return_value='/usr/sbin/update-locale')) @patch('salt.modules.localemod.__grains__', {'os_family': 'Debian', 'osmajorrelease': 42}) @patch('salt.modules.localemod.dbus', None)