diff --git a/tests/integration/client/test_kwarg.py b/tests/integration/client/test_kwarg.py index 8c129530797..7b8022eae1b 100644 --- a/tests/integration/client/test_kwarg.py +++ b/tests/integration/client/test_kwarg.py @@ -86,13 +86,15 @@ class StdTest(ModuleCase): ''' terrible_yaml_string = 'foo: ""\n# \'' ret = self.client.cmd_full_return( - 'minion', - 'test.arg_type', - ['a', 1], - timeout=self.TIMEOUT, - kwarg={'outer': {'a': terrible_yaml_string}, - 'inner': 'value'} - ) + 'minion', + 'test.arg_type', + ['a', 1], + kwarg={ + 'outer': {'a': terrible_yaml_string}, + 'inner': 'value' + }, + timeout=self.TIMEOUT, + ) data = ret['minion']['ret'] self.assertIn(six.text_type.__name__, data['args'][0]) self.assertIn('int', data['args'][1]) @@ -115,7 +117,6 @@ class StdTest(ModuleCase): ], kwarg={ 'quux': 'Quux', - }, timeout=self.TIMEOUT, )