From af322bda77347eaf23f3534b3d3aaf9c37e2066f Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Tue, 5 Dec 2023 12:35:27 -0500 Subject: [PATCH] accomodate copy change in settings cypress test --- tests/cypress/integration/settings.cy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cypress/integration/settings.cy.js b/tests/cypress/integration/settings.cy.js index 8bb3c12be..83174fdfb 100644 --- a/tests/cypress/integration/settings.cy.js +++ b/tests/cypress/integration/settings.cy.js @@ -271,7 +271,7 @@ describe( 'Settings Page', function () { .click(); // 10 cy.wait( 100 ); cy.get( '.wppbh-app-settings-comments' ) - .contains( 'label', 'Display 10 comments per page.' ) + .contains( 'label', 'Comments to display per page' ) .should( 'be.visible' ); cy.get( '[data-id="disable-comments-toggle"]' ) @@ -300,7 +300,7 @@ describe( 'Settings Page', function () { .click(); // 100 cy.wait( 100 ); cy.get( '.wppbh-app-settings-comments' ) - .contains( 'label', 'Close comments after 100 days.' ) + .contains( 'label', 'Comments to display per page' ) .should( 'be.visible' ); cy.get( '[data-id="close-comments-days-select"]' ).click();