Adjust test file whitespace.
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 04 Oct 2009 19:58:19 -0400 |
parents |
adce24d24176
|
children |
0441f8a9096a
|
branches/tags |
(none) |
files |
review/tests/test_comment.py review/tests/test_init.py |
Changes
--- a/review/tests/test_comment.py Sun Oct 04 19:57:03 2009 -0400
+++ b/review/tests/test_comment.py Sun Oct 04 19:58:19 2009 -0400
@@ -13,7 +13,6 @@
gather_output()
review()
output = grab_output()
-
assert messages.REVIEW_LOG_COMMENTS % (0, 0) in output
@@ -39,7 +38,6 @@
gather_output()
review()
output = grab_output()
-
assert messages.REVIEW_LOG_COMMENTS % (1, 1) in output
review(comment=True, message='Test comment two.')
@@ -47,7 +45,6 @@
gather_output()
review()
output = grab_output()
-
assert messages.REVIEW_LOG_COMMENTS % (2, 1) in output
@@ -60,13 +57,11 @@
gather_output()
review(rev='0')
output = grab_output()
-
assert messages.REVIEW_LOG_COMMENTS % (1, 1) in output
gather_output()
review()
output = grab_output()
-
assert messages.REVIEW_LOG_COMMENTS % (0, 0) in output
review(comment=True, message='Test comment two.', rev='0')
@@ -74,6 +69,5 @@
gather_output()
review(rev='0')
output = grab_output()
-
assert messages.REVIEW_LOG_COMMENTS % (2, 1) in output
--- a/review/tests/test_init.py Sun Oct 04 19:57:03 2009 -0400
+++ b/review/tests/test_init.py Sun Oct 04 19:58:19 2009 -0400
@@ -13,7 +13,6 @@
gather_output()
review(init=True)
output = grab_output()
-
assert messages.INIT_SUCCESS in output
assert '.hgreview' not in sandbox['tip']
@@ -34,7 +33,6 @@
gather_output()
review(init=True, local_path='codereview')
output = grab_output()
-
assert messages.INIT_SUCCESS in output
assert '.hgreview' not in sandbox['tip']
@@ -55,7 +53,6 @@
gather_output()
review(init=True, remote_path='../code-review')
output = grab_output()
-
assert messages.INIT_SUCCESS in output
assert '.hgreview' not in sandbox['tip']
@@ -76,7 +73,6 @@
gather_output()
review(init=True, local_path='codereview', remote_path='../code-review')
output = grab_output()
-
assert messages.INIT_SUCCESS in output
assert '.hgreview' not in sandbox['tip']