From d6979f71a3f0d8ba2dc82d378ca903527f0d6ab9 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 9 Jan 2014 15:51:11 -0300 Subject: [PATCH] Bug 11439: (follow up) add missing rollback call This UT got wrapped inside a transaction with autocommit=0 but the rollback call was inadvertedly ommited. Adding it. [RM note: an explicit rollback is not required, as the transaction will roll back automatically at the end of the DB session. Nonetheless, it hurts nothing to have it be explicit.] Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton --- t/db_dependent/XISBN.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/db_dependent/XISBN.t b/t/db_dependent/XISBN.t index 55f25a189d..6ff60639d8 100755 --- a/t/db_dependent/XISBN.t +++ b/t/db_dependent/XISBN.t @@ -65,6 +65,8 @@ is( $results_xisbn->[0]->{biblionumber}, $biblionumber3, "Gets correct biblionumber from a book with a similar isbn using XISBN." ); +$dbh->rollback; + # Util subs # Add new biblio with isbn and return biblionumber -- 2.39.5