# HG changeset patch
# User David M. Carr  <david@carrclan.us>
# Date 1347664205 14400
#      Fri Sep 14 19:10:05 2012 -0400
# Node ID 336c031a0484f9881f2476f36a8ec3b943e35801
# Parent  a6989fabe86d5e7ba91e6dde3b37405a94234d66
tests: remove piping of command git init from test-subrepos

This change was already applied to all the other tests.

diff --git a/tests/test-subrepos.t b/tests/test-subrepos.t
--- a/tests/test-subrepos.t
+++ b/tests/test-subrepos.t
@@ -35,9 +35,8 @@
 
   $ mkdir gitsubrepo
   $ cd gitsubrepo
-  $ git init | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')"
-  Initialized empty Git repository in gitsubrepo/.git/
-  
+  $ git init
+  Initialized empty Git repository in $TESTTMP/gitsubrepo/.git/
   $ echo beta > beta
   $ git add beta
   $ gitcommit -m 'add beta'
@@ -45,9 +44,8 @@
 
   $ mkdir gitrepo1
   $ cd gitrepo1
-  $ git init | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')"
-  Initialized empty Git repository in gitrepo1/.git/
-  
+  $ git init
+  Initialized empty Git repository in $TESTTMP/gitrepo1/.git/
   $ echo alpha > alpha
   $ git add alpha
   $ gitcommit -m 'add alpha'