Actually check for equality on empty commands array (#25308)

pull/19677/merge
Nathaniel Case 7 years ago committed by GitHub
parent 0133a5a763
commit f52dcef7ba

@ -75,7 +75,7 @@ class TestEosModule(unittest.TestCase):
result = self.changed(changed)
self.assertEqual(result['changed'], changed, result)
if commands:
if commands is not None:
if sort:
self.assertEqual(sorted(commands), sorted(result['commands']), result['commands'])
else:

@ -95,8 +95,7 @@ class TestEosEapiModule(TestEosModule):
def test_eos_eapi_http_invalid(self):
set_module_args(dict(http_port=80000))
commands = []
self.start_unconfigured(failed=True, commands=commands)
self.start_unconfigured(failed=True)
def test_eos_eapi_https_enable(self):
set_module_args(dict(https=True))
@ -137,8 +136,7 @@ class TestEosEapiModule(TestEosModule):
def test_eos_eapi_vrf_missing(self):
set_module_args(dict(vrf='missing'))
commands = []
self.start_unconfigured(failed=True, commands=commands)
self.start_unconfigured(failed=True)
def test_eos_eapi_state_absent(self):
set_module_args(dict(state='stopped'))

@ -75,7 +75,7 @@ class TestIosModule(unittest.TestCase):
result = self.changed(changed)
self.assertEqual(result['changed'], changed, result)
if commands:
if commands is not None:
if sort:
self.assertEqual(sorted(commands), sorted(result['commands']), result['commands'])
else:

@ -75,7 +75,7 @@ class TestIosxrModule(unittest.TestCase):
result = self.changed(changed)
self.assertEqual(result['changed'], changed, result)
if commands:
if commands is not None:
if sort:
self.assertEqual(sorted(commands), sorted(result['commands']), result['commands'])
else:

@ -75,7 +75,7 @@ class TestNxosModule(unittest.TestCase):
result = self.changed(changed)
self.assertEqual(result['changed'], changed, result)
if commands:
if commands is not None:
if sort:
self.assertEqual(sorted(commands), sorted(result['commands']), result['commands'])
else:

@ -76,7 +76,7 @@ class TestOpenVSwitchModule(unittest.TestCase):
result = self.changed(changed)
self.assertEqual(result['changed'], changed, result)
if commands:
if commands is not None:
self.assertEqual(commands, result['commands'], result['commands'])
return result

@ -74,7 +74,7 @@ class TestVyosModule(unittest.TestCase):
result = self.changed(changed)
self.assertEqual(result['changed'], changed, result)
if commands:
if commands is not None:
if sort:
self.assertEqual(sorted(commands), sorted(result['commands']), result['commands'])
else:

Loading…
Cancel
Save