commit ec0d5ddfc4e3c2675f3afb864599c6fb8734d028
parent 4b1089bb29e597a193d432d4aa43e1590d1dc6cb
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date: Tue, 19 Apr 2016 03:35:46 +0200
Add a line to a temp test file to cover check_git_remote() better
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/19-unit.t b/t/19-unit.t
@@ -126,7 +126,7 @@ SKIP: {
system(qw! rm -r /usr/sbo/repo !) if -d '/usr/sbo/repo';
system(qw! mkdir -p /usr/sbo/repo/.git !);
my ($fh) = open_fh('/usr/sbo/repo/.git/config', '>');
- print $fh qq'[remote "origin"]\n'; print $fh "url=\n";
+ print $fh qq'[remote "origin"]\n'; print $fh "foo=bar\n"; print $fh "url=\n";
close $fh;
undef $res;