X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/8c86f455ecc445b2d3a52dae71d56f37f2f7999d..36a7cedf196793a6d99f9d3ba2e69805cfff23ab:/t/100-init.t?ds=inline

diff --git a/t/100-init.t b/t/100-init.t
index b726868..74facc0 100644
--- a/t/100-init.t
+++ b/t/100-init.t
@@ -1,5 +1,7 @@
 #!/usr/bin/perl
 
+BEGIN { $ENV{LC_ALL} = 'C' }
+
 use strict;
 use warnings;
 
@@ -16,7 +18,7 @@ ok $output eq "", 'No repos set up yet.';
 
 $output = `./vcsh init test1`;
 
-ok $output eq "Initialized empty Git repository in " . $ENV{'HOME'} . "/.config/vcsh/repo.d/test1.git/\n";
+ok $output eq "Initialized empty shared Git repository in " . $ENV{'HOME'} . "/.config/vcsh/repo.d/test1.git/\n";
 
 $output = `./vcsh status`;
 
@@ -25,7 +27,6 @@ ok $output eq "test1:\n\n", 'Our new repo is there';
 chdir $ENV{"HOME"} . '/.config/vcsh/repo.d/test1.git/' or die $!;
 
 ok -f 'HEAD';
-ok -d 'branches';
 ok -f 'config';
 ok -f 'description';
 ok -d 'hooks';