From 15c14b13c1e01612680c78b59519d9220ac39641 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 3 Mar 2020 15:58:40 +0100 Subject: [PATCH] Bug 23534: Fix selenium tests The title of the page now contains lot of info (is it what we really want?) --- t/db_dependent/selenium/patrons_search.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/selenium/patrons_search.t b/t/db_dependent/selenium/patrons_search.t index 1d8cd98e48..5d2a127e02 100644 --- a/t/db_dependent/selenium/patrons_search.t +++ b/t/db_dependent/selenium/patrons_search.t @@ -106,8 +106,8 @@ subtest 'Search patrons' => sub { is( $driver->get_title, sprintf( - "Koha › Patrons › Modify patron %s %s (%s)", - $first_patron->firstname, $first_patron->surname, + "Koha › Patrons › Modify patron %s %s (%s) %s (%s) (%s)", + $first_patron->title, $first_patron->firstname, $first_patron->othernames, $first_patron->surname, $first_patron->cardnumber, $first_patron->category->description, ) ); -- 2.20.1