diff --git a/core/tests/Drupal/Nightwatch/Assertions/deprecationErrorExists.js b/core/tests/Drupal/Nightwatch/Assertions/deprecationErrorExists.js index 0b8b9f64f56c85b0ee50615a16eb97ae7e0e1374..e1afee8ea784c4ac84e31c25945992124d257150 100644 --- a/core/tests/Drupal/Nightwatch/Assertions/deprecationErrorExists.js +++ b/core/tests/Drupal/Nightwatch/Assertions/deprecationErrorExists.js @@ -7,7 +7,7 @@ module.exports.assertion = function (expected) { const deprecationMessages = sessionStorageEntries !== null ? sessionStorageEntries.filter((message) => - new RegExp('[Deprecation]').test(message), + message.includes('[Deprecation]'), ) : []; diff --git a/core/tests/Drupal/Nightwatch/Assertions/noDeprecationErrors.js b/core/tests/Drupal/Nightwatch/Assertions/noDeprecationErrors.js index 8d5ab79b9e8a9c8ad9ca48c45827203749503e05..2fb004e64f208a4b3611c8f6c6e8c375e9c58fdc 100644 --- a/core/tests/Drupal/Nightwatch/Assertions/noDeprecationErrors.js +++ b/core/tests/Drupal/Nightwatch/Assertions/noDeprecationErrors.js @@ -7,7 +7,7 @@ module.exports.assertion = function () { const deprecationMessages = sessionStorageEntries !== null ? sessionStorageEntries.filter((message) => - new RegExp('[Deprecation]').test(message), + message.includes('[Deprecation]'), ) : [];