On 02/23/2015 03:50 AM, Junio C Hamano wrote:
Torsten Bögershausen <tbo...@web.de> writes:

@@ -359,7 +366,7 @@ done
  for repo in rep rep/home/project 123
  do
        test_expect_success "clone [::1]:$repo" '
-               test_clone_url [::1]:$repo ::1 $repo
+               test_clone_url [::1]:$repo ::1 "$repo"
        '
  done
This change is somewhat a curious one.  Why quote the last
occurrence of $repo but not the previous one?
The reason to quote is that
some shells replace ~ with $HOME, but not "~"
exactly here it seems not to be needed.

+for tuah in ::1 [::1] user@::1 user@[::1] [user@::1]
+do
+       euah=$(echo $tuah | tr -d "[]")
What are tuah and euah, by the way?  Are they FLA for some phrases?
tuah = tested username and host
euah = expected username and host

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to