| Index: au_test_harness/au_test.py
|
| diff --git a/au_test_harness/au_test.py b/au_test_harness/au_test.py
|
| index 47aad12500a257163be27d3456288262ac36f4eb..cc161e042dc3b32ef923e5dd2ba50b1f04c32fe3 100644
|
| --- a/au_test_harness/au_test.py
|
| +++ b/au_test_harness/au_test.py
|
| @@ -116,8 +116,8 @@ class AUTest(unittest.TestCase):
|
| """
|
| unittest.TestCase.setUp(self)
|
| self.worker = self.worker_class(self.options, AUTest.test_results_root)
|
| - self.crosutils = os.path.join(os.path.dirname(__file__), '..', '..')
|
| - self.download_folder = os.path.join(self.crosutils, 'latest_download')
|
| + self.download_folder = os.path.join(os.path.realpath(os.path.curdir),
|
| + 'latest_download')
|
| if not os.path.exists(self.download_folder):
|
| os.makedirs(self.download_folder)
|
|
|
|
|