Formatting cleanup.
Post merging of GH-5837 via GH-5749.
This commit is contained in:
parent
dbad5d71c6
commit
913c855df4
1 changed files with 5 additions and 5 deletions
|
@ -435,6 +435,6 @@ class TestInventory(unittest.TestCase):
|
||||||
def test_dir_inventory_multiple_groups(self):
|
def test_dir_inventory_multiple_groups(self):
|
||||||
inventory = self.dir_inventory()
|
inventory = self.dir_inventory()
|
||||||
group_greek = inventory.get_hosts('greek')
|
group_greek = inventory.get_hosts('greek')
|
||||||
actual_host_names = [host.name for host in group_greek];
|
actual_host_names = [host.name for host in group_greek]
|
||||||
print "greek : %s " % (actual_host_names)
|
print "greek : %s " % actual_host_names
|
||||||
assert actual_host_names == ['zeus','morpheus']
|
assert actual_host_names == ['zeus', 'morpheus']
|
||||||
|
|
Loading…
Reference in a new issue