Index: gm/rebaseline_server/download_actuals_test.py |
diff --git a/gm/rebaseline_server/download_actuals_test.py b/gm/rebaseline_server/download_actuals_test.py |
index a74389f4596c59c0537eee21aa40f3c16aa2ee0d..c6e7dea8e59174b9ec6ae9280ed97977d785d809 100755 |
--- a/gm/rebaseline_server/download_actuals_test.py |
+++ b/gm/rebaseline_server/download_actuals_test.py |
@@ -10,9 +10,9 @@ Test download.py |
TODO(epoger): Create a command to update the expected results (in |
self._output_dir_expected) when appropriate. For now, you should: |
-1. examine the results in self._output_dir_actual and make sure they are ok |
+1. examine the results in self.output_dir_actual and make sure they are ok |
2. rm -rf self._output_dir_expected |
-3. mv self._output_dir_actual self._output_dir_expected |
+3. mv self.output_dir_actual self._output_dir_expected |
Although, if you're using an SVN checkout, this will blow away .svn directories |
within self._output_dir_expected, which wouldn't be good... |
@@ -36,12 +36,12 @@ class DownloadTest(base_unittest.TestCase): |
"""Tests fetch() of GM results from actual-results.json .""" |
downloader = download_actuals.Download( |
actuals_base_url=url_utils.create_filepath_url( |
- os.path.join(self._input_dir, 'gm-actuals')), |
+ os.path.join(self.input_dir, 'gm-actuals')), |
gm_actuals_root_url=url_utils.create_filepath_url( |
- os.path.join(self._input_dir, 'fake-gm-imagefiles'))) |
+ os.path.join(self.input_dir, 'fake-gm-imagefiles'))) |
downloader.fetch( |
builder_name='Test-Android-GalaxyNexus-SGX540-Arm7-Release', |
- dest_dir=self._output_dir_actual) |
+ dest_dir=self.output_dir_actual) |
def main(): |