mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #44697 from Ch3LL/show_top_test
Sort the show_top results for test_state_show_top test
This commit is contained in:
commit
5d82df5667
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class SSHStateTest(SSHCase):
|
|||
test state.show_top with salt-ssh
|
||||
'''
|
||||
ret = self.run_function('state.show_top')
|
||||
self.assertEqual(ret, {u'base': [u'master_tops_test', u'core']})
|
||||
self.assertEqual(ret, {u'base': list(set([u'master_tops_test']).union([u'core']))})
|
||||
|
||||
def test_state_single(self):
|
||||
'''
|
||||
|
|
Loading…
Add table
Reference in a new issue