# HG changeset patch # User David M. Carr <david@carrclan.us> # Date 1351484384 14400 # Mon Oct 29 00:19:44 2012 -0400 # Node ID b933b2b06b8702da4b0626fc7e73fd8b5137ca76 # Parent 81832807d193c244022409571ba70ec36bbe6667 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. diff --git a/tests/test-subrepos.t b/tests/test-subrepos.t --- 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