From d5c11e43b9e6e8fb25206af2a56da6381a4a00e4 Mon Sep 17 00:00:00 2001 From: Florian Engel Date: Mon, 25 May 2015 20:38:39 +0200 Subject: [PATCH] t/100-init.t: Fix failure due to locale --- t/100-init.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/100-init.t b/t/100-init.t index f2b3a05..f8cb5ef 100644 --- a/t/100-init.t +++ b/t/100-init.t @@ -14,7 +14,7 @@ my $output = `./vcsh status`; ok $output eq "", 'No repos set up yet.'; -$output = `./vcsh init test1`; +$output = `LC_ALL=C ./vcsh init test1`; ok $output eq "Initialized empty shared Git repository in " . $ENV{'HOME'} . "/.config/vcsh/repo.d/test1.git/\n"; -- 2.39.2