Fix test where the arg passing should run through

parse input first
This commit is contained in:
Thomas S Hatch 2014-06-26 21:19:26 -06:00
parent fb09311de3
commit 13099a458e

View File

@ -23,7 +23,7 @@ class ArgumentTestCase(integration.ModuleCase):
self.assertEqual(
self.run_function('test.ping', ['foo=bar']),
("ERROR executing 'test.ping': The following keyword arguments "
"are not valid: foo=bar")
"are not valid: {'foo': 'bar'}")
)
def test_kwarg_name_containing_dashes(self):