diff options
author | Timur Borkhodoev <timur.borkhodoev@mail.utoronto.ca> | 2018-02-02 15:34:08 -0500 |
---|---|---|
committer | Timur Borkhodoev <timur.borkhodoev@mail.utoronto.ca> | 2018-02-02 15:34:08 -0500 |
commit | c351b526f6505ec3237038776696ca3c22ec9d87 (patch) | |
tree | b546b26440ff9b8e3ab8758c91adbf35de4139a8 /python/tidy/servo_tidy_tests/test_tidy.py | |
parent | 06e439ef40a8f59c6172b2dcac8f452431a8b845 (diff) | |
download | servo-c351b526f6505ec3237038776696ca3c22ec9d87.tar.gz servo-c351b526f6505ec3237038776696ca3c22ec9d87.zip |
Add test that actually tests the test
Diffstat (limited to 'python/tidy/servo_tidy_tests/test_tidy.py')
-rw-r--r-- | python/tidy/servo_tidy_tests/test_tidy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy_tests/test_tidy.py b/python/tidy/servo_tidy_tests/test_tidy.py index e9e2ffcfdd1..dbc3f9d4f8b 100644 --- a/python/tidy/servo_tidy_tests/test_tidy.py +++ b/python/tidy/servo_tidy_tests/test_tidy.py @@ -39,6 +39,7 @@ class CheckTidiness(unittest.TestCase): self.assertEqual("%s manifest file is required but was not found" % wrong_path, errors.next()[2]) self.assertNoMoreErrors(errors) errors = tidy.check_manifest_dirs(os.path.join(base_path, 'manifest-include.ini'), print_text=False) + self.assertTrue(errors.next()[2].endswith("never_going_to_exist")) self.assertNoMoreErrors(errors) def test_directory_checks(self): |