mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
reordering ret dictionary in load test to ascending order
This commit is contained in:
parent
f7041285d5
commit
d07c84d7ad
1 changed files with 1 additions and 1 deletions
|
@ -61,6 +61,6 @@ class LoadBeaconTestCase(TestCase, LoaderModuleMockMixin):
|
|||
|
||||
self.assertEqual(ret, (True, 'Valid beacon configuration'))
|
||||
|
||||
_expected_return = [{'15m': 1.56, '1m': 1.82, '5m': 1.84}]
|
||||
_expected_return = [{'1m': 1.82, '5m': 1.84, '15m': 1.56}]
|
||||
ret = load.beacon(config)
|
||||
self.assertEqual(ret, _expected_return)
|
||||
|
|
Loading…
Add table
Reference in a new issue