From eb57e0bb31c93d59e17fd0d41d9b3c9dfed70c49 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 21 Feb 2019 13:25:22 -0300 Subject: [PATCH] Bug 22386: Remove debug statements Signed-off-by: Jonathan Druart --- t/db_dependent/Koha/Patrons/Import.t | 2 -- 1 file changed, 2 deletions(-) diff --git a/t/db_dependent/Koha/Patrons/Import.t b/t/db_dependent/Koha/Patrons/Import.t index f3f1f33fde..5d33bd3d16 100644 --- a/t/db_dependent/Koha/Patrons/Import.t +++ b/t/db_dependent/Koha/Patrons/Import.t @@ -214,7 +214,6 @@ my $params_4 = { file => $handle_4, matchpoint => $attribute->{code}, }; my $result_4 = $patrons_import->import_patrons($params_4); # Then ... -warn Data::Dumper::Dumper( $result_4 ); is($result_4->{already_in_db}, 0, 'Got the expected 0 already_in_db from import_patrons with extended user'); is(scalar @{$result_4->{errors}}, 0, 'Got the expected 0 size error array from import_patrons with extended user'); @@ -236,7 +235,6 @@ is($result_4->{overwritten}, 0, 'Got the expected 0 overwritten result from impo seek $handle_4,0,0; #Reset to verify finding a matched patron works my $result_4a = $patrons_import->import_patrons($params_4); -warn Data::Dumper::Dumper( $result_4a ); is($result_4a->{already_in_db}, 1, 'Got the expected 1 already_in_db from import_patrons with extended user matched'); is(scalar @{$result_4->{errors}}, 0, 'Got the expected 0 size error array from import_patrons with extended user matched'); -- 2.11.0