Skip to content

Commit

Permalink
Update deprecated call: addParameter → parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
tbradsha committed Jan 1, 2025
1 parent 7e86278 commit cd54efd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/e2e-commons/fixtures/base-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 };

0 comments on commit cd54efd

Please sign in to comment.