mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
convert the assert to a union set instead
This commit is contained in:
parent
add43c4cfe
commit
974db59dc1
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(sorted(ret['base']), ['core', 'master_tops_test'])
|
||||
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