From 2ad04a16a4b50474fbe56d3347a7f0b827c9783e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 19 Sep 2025 12:47:05 +0200 Subject: [PATCH] Bug 36095: Fix Selenium tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # 'Details for opac holds test place hold button › Koha online catalog' # doesn't match '(?^u:Details for: opac holds test place hold button)' --- t/db_dependent/selenium/opac_holds.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/selenium/opac_holds.t b/t/db_dependent/selenium/opac_holds.t index b527ee8439c..01563f405c7 100755 --- a/t/db_dependent/selenium/opac_holds.t +++ b/t/db_dependent/selenium/opac_holds.t @@ -133,7 +133,7 @@ SKIP: { # 'Place hold' button exists by default $driver->get( $s->opac_base_url . "opac-detail.pl?biblionumber=" . $biblionumber ); like( - $driver->get_title, qr(Details for: $biblio_title), + $driver->get_title, qr(Details for $biblio_title), 'Correctly in detail page' ); @@ -267,7 +267,7 @@ SKIP: { # 'Place hold' button exists by default $driver->get( $s->opac_base_url . "opac-detail.pl?biblionumber=" . $biblionumber ); like( - $driver->get_title, qr(Details for: $biblio_title), + $driver->get_title, qr(Details for $biblio_title), 'Correctly in detail page' ); -- 2.34.1