changeset 567:b933b2b06b87

tests: fix check for dulwich in test-subrepos.t In converting this test to the unified format, it looks like we missed this line. It was accidentally being treated as a comment rather than executable.
author David M. Carr <david@carrclan.us>
date Mon, 29 Oct 2012 00:19:44 -0400
parents 81832807d193
children 92aa31a3a1dd
files tests/test-subrepos.t
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-subrepos.t
+++ b/tests/test-subrepos.t
@@ -2,7 +2,7 @@
   $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
-python -c 'import dulwich, dulwich.repo' || exit 80
+  $ python -c 'import dulwich, dulwich.repo' || exit 80
 
 bail early if the user is already running git-daemon
   $ ! (echo hi | nc localhost 9418 2>/dev/null) || exit 80