commit ebf4c0274f7e90da8946f2ba49c3e787fb367264 Author: Damian Johnson atagar@torproject.org Date: Tue Apr 17 08:46:21 2012 -0700
Left out part of the whitespace rename change
Oops! Forgot to do a 'git commit -a' to pick up the other changes from renaming to 'check_whitespace.py'. --- run_tests.py | 4 ++-- test/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/run_tests.py b/run_tests.py index d764d54..1fee4da 100755 --- a/run_tests.py +++ b/run_tests.py @@ -13,7 +13,7 @@ import StringIO
import test.output import test.runner -import test.whitespace_check +import test.check_whitespace import test.unit.connection.authentication import test.unit.connection.protocolinfo import test.unit.socket.control_line @@ -338,7 +338,7 @@ if __name__ == '__main__':
# TODO: note unused config options afterward?
- whitespace_issues = test.whitespace_check.get_issues() + whitespace_issues = test.check_whitespace.get_issues()
if whitespace_issues: test.output.print_line("WHITESPACE ISSUES", term.Color.BLUE, term.Attr.BOLD) diff --git a/test/__init__.py b/test/__init__.py index 9f227af..eb03299 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -2,5 +2,5 @@ Unit and integration tests for the stem library. """
-__all__ = ["mocking", "output", "runner", "whitespace_check"] +__all__ = ["check_whitespace", "mocking", "output", "runner"]
tor-commits@lists.torproject.org