From 22a1fb28d6c8faa4f9cdc93711fe118c7b273943 Mon Sep 17 00:00:00 2001 From: Richard C Isaacson Date: Wed, 5 Mar 2014 13:44:15 -0600 Subject: [PATCH] Minor cleanup. --- test/units/TestInventory.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/units/TestInventory.py b/test/units/TestInventory.py index b061c1112b3..2f7b47989ac 100644 --- a/test/units/TestInventory.py +++ b/test/units/TestInventory.py @@ -433,8 +433,8 @@ class TestInventory(unittest.TestCase): assert host_vars == expected_vars def test_dir_inventory_multiple_groups(self): - inventory = self.dir_inventory() - group_greek = inventory.get_hosts('greek') - actual_host_names = [host.name for host in group_greek]; - print "greek : %s " % (actual_host_names) - assert actual_host_names == ['zeus','morpheus'] + inventory = self.dir_inventory() + group_greek = inventory.get_hosts('greek') + actual_host_names = [host.name for host in group_greek] + print "greek : %s " % actual_host_names + assert actual_host_names == ['zeus', 'morpheus']