From 57b7d894596f0b72f5c8f2ef75ac300e7462bd1d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 13 Mar 2026 10:03:02 +0100 Subject: [PATCH] Bug 42090: Fix KohaTable/Holdings_spec.ts I think there has been a mix in the different fixes, and 24.11 diverged from main My suggestion here is to use a different column as "Status" is a specific one --- t/cypress/integration/KohaTable/Holdings_spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/cypress/integration/KohaTable/Holdings_spec.ts b/t/cypress/integration/KohaTable/Holdings_spec.ts index d870c3e69dc..dbaaebe812b 100644 --- a/t/cypress/integration/KohaTable/Holdings_spec.ts +++ b/t/cypress/integration/KohaTable/Holdings_spec.ts @@ -208,7 +208,7 @@ describe("catalogue/detail/holdings_table with items", () => { // Filters are not displayed cy.get(`#${table_id} thead tr`).should("have.length", 1); - cy.get(`#${table_id} th`).contains("Status"); + cy.get(`#${table_id} th`).contains("Barcode"); cy.get(`#${table_id} th`) .contains("URL") .should("not.exist"); @@ -223,7 +223,7 @@ describe("catalogue/detail/holdings_table with items", () => { // Filters are displayed cy.get(`#${table_id} thead tr`).should("have.length", 2); - cy.get(`#${table_id} th`).contains("Status"); + cy.get(`#${table_id} th`).contains("Barcode"); cy.get(`#${table_id} th`) .contains("URL") .should("not.exist"); -- 2.43.0