diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-10-16 09:16:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-16 09:16:06 +0200 |
commit | 0e6450039a26a66c0355decf2bc8b985d1621c28 (patch) | |
tree | 32705c69962c9d3a858ba3185314e7c339629d28 /t/t1400-update-ref.sh | |
parent | Merge branch 'ma/commit-graph-docs' (diff) | |
parent | t1400: drop debug `echo` to actually execute `test` (diff) | |
download | git-0e6450039a26a66c0355decf2bc8b985d1621c28.tar.xz git-0e6450039a26a66c0355decf2bc8b985d1621c28.zip |
Merge branch 'ma/t1400-undebug-test'
Test fix.
* ma/t1400-undebug-test:
t1400: drop debug `echo` to actually execute `test`
Diffstat (limited to 't/t1400-update-ref.sh')
-rwxr-xr-x | t/t1400-update-ref.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t1400-update-ref.sh b/t/t1400-update-ref.sh index 663f17c5fe..1fbd940408 100755 --- a/t/t1400-update-ref.sh +++ b/t/t1400-update-ref.sh @@ -366,7 +366,7 @@ test_expect_success 'Query master@{2005-05-25} (before history)' ' test_when_finished "rm -f o e" && git rev-parse --verify master@{2005-05-25} >o 2>e && test $C = $(cat o) && - echo test "warning: Log for '\''master'\'' only goes back to $ed." = "$(cat e)" + test "warning: Log for '\''master'\'' only goes back to $ed." = "$(cat e)" ' test_expect_success 'Query "master@{May 26 2005 23:31:59}" (1 second before history)' ' test_when_finished "rm -f o e" && |