Skip to content

Commit

Permalink
fix: runDescription can end up with the wrong value
Browse files Browse the repository at this point in the history
- 'runDescription "value"' not setting the correct value (unlike 'runDescription = "value"')
- 'runDescription' getter not getting the correct value when using a system property
  • Loading branch information
guilgaly committed Sep 30, 2024
1 parent 4811808 commit 0a07ced
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class GatlingPluginExtension {
}

def runDescription(String runDescription) {
setRunDescription(runTitle)
setRunDescription(runDescription)
}

def setPackageId(String packageId) {
Expand Down Expand Up @@ -150,7 +150,7 @@ class GatlingPluginExtension {
}

String getRunDescription() {
ConfigurationConstants.StartOptions.RunTitle.valueOf(runDescription)
ConfigurationConstants.StartOptions.RunDescription.valueOf(runDescription)
}

@Input
Expand Down

0 comments on commit 0a07ced

Please sign in to comment.