diff --git a/tools/e2e-commons/fixtures/base-test.js b/tools/e2e-commons/fixtures/base-test.js index 188b7b6e999c6..38dad72c982c8 100644 --- a/tools/e2e-commons/fixtures/base-test.js +++ b/tools/e2e-commons/fixtures/base-test.js @@ -45,7 +45,7 @@ test.beforeEach( async () => { test.afterEach( async () => { const wpcomRequestCount = await execWpCommand( 'transient get wpcom_request_counter' ); - allure.addParameter( 'Requests to WPCOM API', parseInt( wpcomRequestCount ) || 0 ); + allure.parameter( 'Requests to WPCOM API', parseInt( wpcomRequestCount ) || 0 ); } ); export { test };