View | Details | Raw Unified | Return to bug 29857
Collapse All | Expand All

(-)a/t/Koha/REST/Plugin/Query.t (-3 / +2 lines)
Lines 486-492 subtest 'stash_embed() tests' => sub { Link Here
486
      ->status_is(400)
486
      ->status_is(400)
487
      ->json_is(
487
      ->json_is(
488
        {
488
        {
489
            error => 'Embeding patron is not authorised. Check your x-koha-embed headers or remove it.'
489
            error => qq{Exception 'Koha::Exceptions::BadParameter' thrown 'Embeding patron is not authorised. Check your x-koha-embed headers or remove it.'\n}
490
        }
490
        }
491
      );
491
      );
492
492
Lines 494-500 subtest 'stash_embed() tests' => sub { Link Here
494
      ->status_is(400)
494
      ->status_is(400)
495
      ->json_is(
495
      ->json_is(
496
        {
496
        {
497
            error => 'Embedding objects is not allowed on this endpoint.'
497
            error => qq{Exception 'Koha::Exceptions::BadParameter' thrown 'Embedding objects is not allowed on this endpoint.'\n}
498
        }
498
        }
499
      );
499
      );
500
500
501
- 

Return to bug 29857