Bug 14059: Deleting 'issues' table before processing the tests
It's suppose to avoid foreign key trouble Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> No error Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
9c80f1fd77
commit
9381c95dc3
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ can_ok(
|
|||
my $dbh = C4::Context->dbh;
|
||||
$dbh->{AutoCommit} = 0;
|
||||
$dbh->{RaiseError} = 1;
|
||||
$dbh->do('DELETE FROM issues');
|
||||
$dbh->do('DELETE FROM creator_templates');
|
||||
$dbh->do('DELETE FROM creator_layouts');
|
||||
$dbh->do('DELETE FROM creator_images');
|
||||
|
|
Loading…
Reference in a new issue