On Fri, Mar 15, 2019 at 06:38:07PM -0700, nbelakovski@xxxxxxxxx wrote: > diff --git a/t/t3203-branch-output.sh b/t/t3203-branch-output.sh > index ceb74e0826..e5dc23e225 100755 > --- a/t/t3203-branch-output.sh > +++ b/t/t3203-branch-output.sh > @@ -328,4 +328,23 @@ test_expect_success '--color overrides auto-color' ' > test_cmp expect.color actual > ' > > +test_expect_success 'verbose output lists worktree path' ' > + one=$(git rev-parse --short HEAD) && > + two=$(git rev-parse --short master) && > + cat >expect <<-EOF && > + * (HEAD detached from fromtag) $one one This 'HEAD detached from ..." message is translated ... > + ambiguous $one one > + branch-one $two two > + + branch-two $one ($(pwd)/worktree_dir) one > + master $two two > + ref-to-branch $two two > + ref-to-remote $two two > + EOF > + git worktree add worktree_dir branch-two && > + git branch -vv >actual && > + rm -r worktree_dir && > + git worktree prune && > + test_cmp expect actual ... therefore here you should use 'test_i18ncmp', as otherwise the GETTEXT_POISON test run fails. > +' > + > test_done > -- > 2.14.2 >