From: Jonathan Druart Date: Thu, 19 Jun 2014 11:50:31 +0000 (+0200) Subject: Bug 12427: Allow execution of UTs on a DB with issues X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=0310acf425c35e7a30a96da2130044cd0d7b86f5;p=koha_fer Bug 12427: Allow execution of UTs on a DB with issues Signed-off-by: Bernardo Gonzalez Kriegel Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- diff --git a/t/db_dependent/Members_Attributes.t b/t/db_dependent/Members_Attributes.t index d36a4c03a2..2039db07a4 100755 --- a/t/db_dependent/Members_Attributes.t +++ b/t/db_dependent/Members_Attributes.t @@ -31,6 +31,7 @@ my $dbh = C4::Context->dbh; $dbh->{AutoCommit} = 0; $dbh->{RaiseError} = 1; +$dbh->do(q|DELETE FROM issues|); $dbh->do(q|DELETE FROM borrowers|); $dbh->do(q|DELETE FROM borrower_attributes|); $dbh->do(q|DELETE FROM borrower_attribute_types|);