Tom Grennan [off-list ref] writes:
test_expect_success 'confuses pattern as remote when no remote specified' '
+ '"
+ cat >exp <<-EOF
+ fatal: 'refs*master' does not appear to be a git repository
+ fatal: The remote end hung up unexpectedly
+ EOF
+ "'
Please make it a habit to make your test script a cascade of &&, i.e.
... remote specified' '
cat >exp <<-\EOF &&
fatal: '\''refs*master'\'' does not ...
...
EOF
No need to resend; I'll fix it up locally.
Thanks.