@@ -, +, @@ --- t/db_dependent/SIP/Transaction.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/t/db_dependent/SIP/Transaction.t +++ a/t/db_dependent/SIP/Transaction.t @@ -87,8 +87,8 @@ subtest fill_holds_at_checkout => sub { is( $transaction->patron( $sip_patron ), $sip_patron, "Patron assigned to transaction" ); is( $transaction->item( $sip_item ), $sip_item, "Item assigned to transaction" ); my $checkout = $transaction->do_checkout(); - use Data::Printer colored => 1; # Temporary debug statement - is( $bib->holds->count(), 1, "Bib has 1 holds remaining") or diag p $checkout; + use Data::Dumper; # Temporary debug statement + is( $bib->holds->count(), 1, "Bib has 1 holds remaining") or diag Dumper $checkout; t::lib::Mocks::mock_preference('itemBarcodeInputFilter', 'whitespace'); $sip_item = C4::SIP::ILS::Item->new( ' barcode 4 test '); --