From 5d80f6740fed7c80461e2f4fea8b02d7db8fa314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Burr=C3=A9?= Date: Mon, 18 Dec 2023 14:53:13 +0100 Subject: [PATCH] docs: update gatlingExecuteTests example (#4726) There is no testModule parameter in gatlingExecuteTests, the correct parameter to be used is pomPath --- documentation/docs/steps/gatlingExecuteTests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/steps/gatlingExecuteTests.md b/documentation/docs/steps/gatlingExecuteTests.md index 428263a8ab..90dbda2981 100644 --- a/documentation/docs/steps/gatlingExecuteTests.md +++ b/documentation/docs/steps/gatlingExecuteTests.md @@ -19,5 +19,5 @@ We recommend to define values of step parameters via [config.yml file](../config Pipeline step: ```groovy -gatlingExecuteTests script: this, testModule: 'performance-tests/pom.xml' +gatlingExecuteTests script: this, pomPath: 'performance-tests/pom.xml' ```