# HG changeset patch # User Yuya Nishihara # Date 1441093132 -32400 # Node ID fa6ba7c9600be7db9c1f6a0a2cec5a481f49be6b # Parent a31ffc445f0249b27f80cd5cf78d87ddeb6db470 test-ssh: remove superfluous triple slashes from absolute path test Because pwd should start with "/", "/`pwd`" is enough to make absolute path. diff -r a31ffc445f02 -r fa6ba7c9600b tests/test-ssh.t --- a/tests/test-ssh.t Wed Sep 02 11:52:24 2015 -0500 +++ b/tests/test-ssh.t Tue Sep 01 16:38:52 2015 +0900 @@ -40,7 +40,7 @@ non-existent absolute path - $ hg clone -e "python \"$TESTDIR/dummyssh\"" ssh://user@dummy//`pwd`/nonexistent local + $ hg clone -e "python \"$TESTDIR/dummyssh\"" ssh://user@dummy/`pwd`/nonexistent local remote: abort: there is no Mercurial repository here (.hg not found)! abort: no suitable response from remote hg! [255] @@ -471,7 +471,7 @@ $ cat dummylog Got arguments 1:user@dummy 2:hg -R nonexistent serve --stdio - Got arguments 1:user@dummy 2:hg -R /$TESTTMP/nonexistent serve --stdio + Got arguments 1:user@dummy 2:hg -R $TESTTMP/nonexistent serve --stdio Got arguments 1:user@dummy 2:hg -R remote serve --stdio Got arguments 1:user@dummy 2:hg -R local-stream serve --stdio Got arguments 1:user@dummy 2:hg -R remote serve --stdio