Lines 52-58
$context->set_preference( 'ThingISBN', 1 );
Link Here
|
52 |
$context->set_preference( 'XISBN', 0 ); |
52 |
$context->set_preference( 'XISBN', 0 ); |
53 |
my $results_thingisbn = C4::XISBN::get_xisbns($isbn1); |
53 |
my $results_thingisbn = C4::XISBN::get_xisbns($isbn1); |
54 |
is( $results_thingisbn->[0]->{biblionumber}, |
54 |
is( $results_thingisbn->[0]->{biblionumber}, |
55 |
$biblionumber2, |
55 |
$biblionumber3, |
56 |
"Gets correct biblionumber from a book with a similar isbn using ThingISBN." ); |
56 |
"Gets correct biblionumber from a book with a similar isbn using ThingISBN." ); |
57 |
|
57 |
|
58 |
$context->set_preference( 'ThingISBN', 0 ); |
58 |
$context->set_preference( 'ThingISBN', 0 ); |
59 |
- |
|
|