From a36b0061fab71b89bc77a3622d502428a1bb633a Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Mon, 20 Aug 2018 19:57:28 -0400 Subject: [PATCH] fix failing unit tests --- awx/main/expect/isolated_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/expect/isolated_manager.py b/awx/main/expect/isolated_manager.py index 9fa5c4af45..016d3e8f28 100644 --- a/awx/main/expect/isolated_manager.py +++ b/awx/main/expect/isolated_manager.py @@ -117,10 +117,10 @@ class IsolatedManager(object): @classmethod def awx_playbook_path(cls): - return os.path.join( + return os.path.abspath(os.path.join( os.path.dirname(awx.__file__), 'playbooks' - ) + )) def path_to(self, *args): return os.path.join(self.private_data_dir, *args)