diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-06-16 07:14:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-16 07:14:54 -0500 |
commit | ff67f80f36106cba4a89c48d8c8d59c9880856c7 (patch) | |
tree | 58c8387580304757dca788b338352f3b05d02d87 /python/tidy/servo_tidy_tests/test_tidy.py | |
parent | 6d4b9e65e652166adbdee6c16fe12d27d8df6418 (diff) | |
parent | dfe32b0adad4b65dd6dc3cb5c58a4c78491b23ae (diff) | |
download | servo-ff67f80f36106cba4a89c48d8c8d59c9880856c7.tar.gz servo-ff67f80f36106cba4a89c48d8c8d59c9880856c7.zip |
Auto merge of #11755 - Wafflespeanut:tidy_fixes, r=nox
Removed an unused function and minor cleanup
fixes #11679
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11755)
<!-- Reviewable:end -->
Diffstat (limited to 'python/tidy/servo_tidy_tests/test_tidy.py')
-rw-r--r-- | python/tidy/servo_tidy_tests/test_tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy_tests/test_tidy.py b/python/tidy/servo_tidy_tests/test_tidy.py index 4b271ce993c..dbbc77c9e23 100644 --- a/python/tidy/servo_tidy_tests/test_tidy.py +++ b/python/tidy/servo_tidy_tests/test_tidy.py @@ -79,7 +79,7 @@ class CheckTidiness(unittest.TestCase): self.assertNoMoreErrors(errors) def test_spec_link(self): - tidy.spec_base_path = base_path + tidy.SPEC_BASE_PATH = base_path errors = tidy.collect_errors_for_files(iterFile('speclink.rs'), [], [tidy.check_spec], print_text=False) self.assertEqual('method declared in webidl is missing a comment with a specification link', errors.next()[2]) self.assertNoMoreErrors(errors) |