From 499158960dc8d59ab1190594b74edf207da1b556 Mon Sep 17 00:00:00 2001 From: Peter Nied Date: Thu, 25 Apr 2024 21:13:27 -0500 Subject: [PATCH] [Security Plugin] Update tenant header identifiers (#1239) Follow up need since the copy on these pages was modified in https://github.com/opensearch-project/security-dashboards-plugin/pull/1881 - Resolves https://github.com/opensearch-project/security-dashboards-plugin/issues/1893 Signed-off-by: Peter Nied --- cypress/integration/plugins/security/tenants_spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/plugins/security/tenants_spec.js b/cypress/integration/plugins/security/tenants_spec.js index d47e00378..652744fd7 100644 --- a/cypress/integration/plugins/security/tenants_spec.js +++ b/cypress/integration/plugins/security/tenants_spec.js @@ -24,7 +24,7 @@ if (Cypress.env('SECURITY_ENABLED')) { } ); - cy.contains('h3', 'Tenants'); + cy.contains('h3', 'Dashboards tenants'); // One of the many tenants cy.contains('.euiTableCellContent', 'Global'); @@ -69,7 +69,7 @@ if (Cypress.env('SECURITY_ENABLED')) { expect(url).to.contain('/tenants'); }); - cy.contains('h3', 'Tenants'); + cy.contains('h3', 'Dashboards tenants'); // should contain the new tenant that was just created cy.contains('.euiTableCellContent', tenantName); cy.contains('span', tenantDescription);