Fix values in proxy caller tests

These numbers were wrong because of the bug fixed in #49552

Fixes saltstack/salt-jenkins#1135
This commit is contained in:
Daniel Wallace 2018-10-01 16:53:41 -05:00
parent 4a5bc5b2c6
commit ea939d96d7
No known key found for this signature in database
GPG key ID: 5FA5E5544F010D48

View file

@ -43,8 +43,8 @@ class ProxyCallerSimpleTestCase(ShellCase):
def test_upgrade(self):
ret = self._load_return(self.run_call('--proxyid proxytest --out=json pkg.upgrade'))
self.assertEqual(ret['local']['coreutils']['new'], '3.0')
self.assertEqual(ret['local']['redbull']['new'], '1001.99')
self.assertEqual(ret['local']['coreutils']['new'], '2.0')
self.assertEqual(ret['local']['redbull']['new'], '1000.99')
def test_service_list(self):
ret = self._load_return(self.run_call('--proxyid proxytest --out=json service.list'))