Skip to content
Snippets Groups Projects
Commit 79014fa9 authored by Monika Komorowska's avatar Monika Komorowska
Browse files

If previous release of core defined in config, use it for tests

parent e3b360a0
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,11 @@ sub new {
my $self ={};
bless $self,$class;
$self->core($mapper->core);
if (defined($mapper->previous_core)) {
$self->core($mapper->previous_core);
} else {
$self->core($mapper->core);
}
$self->xref($mapper->xref);
$self->mapper($mapper);
return $self;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment