Pass opts not an ImmutableDict of opts

This commit is contained in:
Thomas Jackson 2015-01-27 13:11:01 -08:00
parent 619c2a49ed
commit 4db02487f1

View File

@ -9,7 +9,7 @@ import salt.wheel
class KeyWheelModuleTest(integration.TestCase, integration.AdaptedConfigurationTestCaseMixIn):
def setUp(self):
self.wheel = salt.wheel.Wheel(self.get_config('client_config'))
self.wheel = salt.wheel.Wheel(dict(self.get_config('client_config')))
def test_list_all(self):
ret = self.wheel.call_func('key.list_all')