From 038b1fcf32d3f2e0913fa1fc379ba7ca2bdd9248 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Mon, 18 Dec 2017 09:09:58 +0100 Subject: [PATCH] Bug 19821: Close filehandle after writing --- t/lib/Bootstrap.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/lib/Bootstrap.pm b/t/lib/Bootstrap.pm index f679d392ff..7fac260b99 100644 --- a/t/lib/Bootstrap.pm +++ b/t/lib/Bootstrap.pm @@ -28,6 +28,7 @@ sub import { my ($fh, $filename) = tempfile('koha-conf.XXXXXX', TMPDIR => 1, UNLINK => 1); $xml->toFH($fh); + close $fh; $ENV{KOHA_CONF} = $filename; @@ -45,7 +46,7 @@ sub import { my $user = C4::Context->config('user'); my $pass = C4::Context->config('pass'); - say "Create test database..."; + say "Create test database $database..."; my $dbh = DBI->connect("dbi:mysql:;host=$host;port=$port", $user, $pass, { RaiseError => 1, -- 2.11.0