Commit d7c4e80d2ab26252096219f540ed037f15985472

Stefan Sperling 2020-04-19T08:57:07

fix expected output in clone and fetch tests

diff --git a/regress/cmdline/clone.sh b/regress/cmdline/clone.sh
index b188613..e0ab009 100755
--- a/regress/cmdline/clone.sh
+++ b/regress/cmdline/clone.sh
@@ -106,7 +106,7 @@ function test_clone_list {
 		return 1
 	fi
 
-	echo "Connected to 127.0.0.1" > $testroot/stdout.expected
+	echo "Connecting to 127.0.0.1" > $testroot/stdout.expected
 	got ref -l -r $testroot/repo >> $testroot/stdout.expected
 
 	cmp -s $testroot/stdout $testroot/stdout.expected
diff --git a/regress/cmdline/fetch.sh b/regress/cmdline/fetch.sh
index d46a151..8d18f4c 100755
--- a/regress/cmdline/fetch.sh
+++ b/regress/cmdline/fetch.sh
@@ -145,7 +145,7 @@ function test_fetch_list {
 		return 1
 	fi
 
-	echo "Connected to \"origin\" 127.0.0.1" > $testroot/stdout.expected
+	echo "Connecting to \"origin\" 127.0.0.1" > $testroot/stdout.expected
 	got ref -l -r $testroot/repo >> $testroot/stdout.expected
 
 	cmp -s $testroot/stdout $testroot/stdout.expected