diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-04-19 03:35:46 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-04-19 03:35:46 +0200 |
commit | ec0d5ddfc4e3c2675f3afb864599c6fb8734d028 (patch) | |
tree | c00ab26a6dd7a00b2369717568e1c17a47fa716e | |
parent | 4b1089bb29e597a193d432d4aa43e1590d1dc6cb (diff) | |
download | sbotools2-ec0d5ddfc4e3c2675f3afb864599c6fb8734d028.tar.xz |
Add a line to a temp test file to cover check_git_remote() better
-rw-r--r-- | t/19-unit.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/19-unit.t b/t/19-unit.t index eecd391..c2f0d21 100644 --- 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; |