From 6d303faea90dedc30599ab25f9460768d92a62f7 Mon Sep 17 00:00:00 2001 From: Chris Church Date: Tue, 15 Oct 2013 17:57:29 -0400 Subject: [PATCH] AC-556 Renamed inventory script filename used for import_import command test. --- awx/main/tests/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/commands.py b/awx/main/tests/commands.py index cbe123e302..57c2e40514 100644 --- a/awx/main/tests/commands.py +++ b/awx/main/tests/commands.py @@ -704,7 +704,7 @@ class InventoryImportTest(BaseCommandMixin, BaseLiveServerTest): os.environ.setdefault('REST_API_URL', rest_api_url) os.environ['INVENTORY_ID'] = str(old_inv.pk) source = os.path.join(os.path.dirname(__file__), '..', '..', 'plugins', - 'inventory', 'awx.py') + 'inventory', 'awxrest.py') result, stdout, stderr = self.run_command('inventory_import', inventory_id=new_inv.pk, source=source)