Merge pull request #2895 from ryanpetrello/release_3.3.0

fix failing unit tests
This commit is contained in:
Ryan Petrello
2018-08-21 08:16:29 -04:00
committed by GitHub

View File

@@ -117,10 +117,10 @@ class IsolatedManager(object):
@classmethod @classmethod
def awx_playbook_path(cls): def awx_playbook_path(cls):
return os.path.join( return os.path.abspath(os.path.join(
os.path.dirname(awx.__file__), os.path.dirname(awx.__file__),
'playbooks' 'playbooks'
) ))
def path_to(self, *args): def path_to(self, *args):
return os.path.join(self.private_data_dir, *args) return os.path.join(self.private_data_dir, *args)