fix failing unit tests

This commit is contained in:
Ryan Petrello 2018-08-20 19:57:28 -04:00
parent eb0cf945cf
commit a36b0061fa
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -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)