summaryrefslogtreecommitdiffstats
path: root/t/t6040-tracking-info.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-09-10 10:08:22 +0200
committerJunio C Hamano <gitster@pobox.com>2017-09-10 10:08:22 +0200
commit8e36002adda45a35c6fc4daf81913c3d2102cb59 (patch)
treee3640ac0242262814f2b2d4c2a01c4332faeb18c /t/t6040-tracking-info.sh
parentMerge branch 'ma/ts-cleanups' (diff)
parenttreewide: correct several "up-to-date" to "up to date" (diff)
downloadgit-8e36002adda45a35c6fc4daf81913c3d2102cb59.tar.xz
git-8e36002adda45a35c6fc4daf81913c3d2102cb59.zip
Merge branch 'ma/up-to-date'
Message and doc updates. * ma/up-to-date: treewide: correct several "up-to-date" to "up to date" Documentation/user-manual: update outdated example output
Diffstat (limited to 't/t6040-tracking-info.sh')
-rwxr-xr-xt/t6040-tracking-info.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t6040-tracking-info.sh b/t/t6040-tracking-info.sh
index be78cc4fad..8f17fd9da8 100755
--- a/t/t6040-tracking-info.sh
+++ b/t/t6040-tracking-info.sh
@@ -100,7 +100,7 @@ test_expect_success 'checkout (up-to-date with upstream)' '
(
cd test && git checkout b6
) >actual &&
- test_i18ngrep "Your branch is up-to-date with .origin/master" actual
+ test_i18ngrep "Your branch is up to date with .origin/master" actual
'
test_expect_success 'status (diverged from upstream)' '
@@ -130,7 +130,7 @@ test_expect_success 'status (up-to-date with upstream)' '
# reports nothing to commit
test_must_fail git commit --dry-run
) >actual &&
- test_i18ngrep "Your branch is up-to-date with .origin/master" actual
+ test_i18ngrep "Your branch is up to date with .origin/master" actual
'
cat >expect <<\EOF