t1400: drop debug `echo` to actually execute `test`

Instead of running `test "foo" = "$(bar)"`, we prefix the whole thing with `echo`. Comparing to nearby tests makes it clear that this is just debug leftover. This line has actually been modified four times since it was introduced in e52290428b (General ref log reading improvements., 2006-05-19) and the `echo` has always survived. Let's finally drop it. This script could need some more cleanups. This is just an immediate fix so that we actually test what we intend to. All other hits for `git grep "\<echo test " -- t/` seem fine. They want to create some input or expected output data. Signed-off-by: Martin Ågren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Martin Ågren committed Sep 28, 2018 at 17:43 UTC fc0503b04e4c5f69ab74d7d0fb889c1b7c78aced
1 file changed +1 -1
t/t1400-update-ref.sh
+1 -1
@@ -366,7 +366,7 @@ test_expect_success 'Query master@{2005-05-25} (before history)' '
366 test_when_finished "rm -f o e" &&
367 git rev-parse --verify master@{2005-05-25} >o 2>e &&
368 test $C = $(cat o) &&
369 - echo test "warning: Log for '\''master'\'' only goes back to $ed." = "$(cat e)"
369 + test "warning: Log for '\''master'\'' only goes back to $ed." = "$(cat e)"
370 '
371 test_expect_success 'Query "master@{May 26 2005 23:31:59}" (1 second before history)' '
372 test_when_finished "rm -f o e" &&