From 27bac667b21a89a717408b36b14c78d0bdd19a9c Mon Sep 17 00:00:00 2001 From: askeing Date: Sun, 17 Apr 2016 04:20:24 +0900 Subject: Modified test_spec_link of test_tidy for packaged tidy --- python/tidy/servo_tidy_tests/test_tidy.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'python/tidy/servo_tidy_tests/test_tidy.py') diff --git a/python/tidy/servo_tidy_tests/test_tidy.py b/python/tidy/servo_tidy_tests/test_tidy.py index a183e6a798d..031e0873a56 100644 --- a/python/tidy/servo_tidy_tests/test_tidy.py +++ b/python/tidy/servo_tidy_tests/test_tidy.py @@ -11,10 +11,11 @@ import os import unittest from servo_tidy import tidy +base_path = 'servo_tidy_tests/' if os.path.exists('servo_tidy_tests/') else 'python/tidy/servo_tidy_tests/' + def iterFile(name): - path = 'servo_tidy_tests/' if os.path.exists('servo_tidy_tests/') else 'python/tidy/servo_tidy_tests/' - return iter([os.path.join(path, name)]) + return iter([os.path.join(base_path, name)]) class CheckTidiness(unittest.TestCase): @@ -62,7 +63,7 @@ class CheckTidiness(unittest.TestCase): self.assertEqual('use &str instead of &String', errors.next()[2]) def test_spec_link(self): - tidy.spec_base_path = "python/tidy_self_test/" + tidy.spec_base_path = base_path errors = tidy.collect_errors_for_files(iterFile('speclink.rs'), [], [tidy.check_spec]) self.assertEqual('method declared in webidl is missing a comment with a specification link', errors.next()[2]) -- cgit v1.2.3