File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/java/io/gatling/mojo Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -134,19 +134,19 @@ private List<String> recorderArgs(
134
134
List <String > args = new ArrayList <>();
135
135
args .addAll (
136
136
List .of (
137
- RecorderCliOptions .SimulationsFolder .shortName ,
137
+ RecorderCliOptions .SimulationsFolder .shortOption () ,
138
138
simulationsDirectory .toFile ().getCanonicalPath ()));
139
139
if (format != null ) {
140
140
// format is option, best suited Java version will be picked
141
- args .addAll (List .of (RecorderCliOptions .Format .shortName , format ));
141
+ args .addAll (List .of (RecorderCliOptions .Format .shortOption () , format ));
142
142
}
143
143
args .addAll (
144
144
List .of (
145
- RecorderCliOptions .ResourcesFolder .shortName ,
145
+ RecorderCliOptions .ResourcesFolder .shortOption () ,
146
146
testResourcesDirectory .toFile ().getCanonicalPath ()));
147
- args .addAll (List .of (RecorderCliOptions .Package .shortName , packageName ));
147
+ args .addAll (List .of (RecorderCliOptions .Package .shortOption () , packageName ));
148
148
if (className != null ) {
149
- args .addAll (List .of (RecorderCliOptions .ClassName .shortName , className ));
149
+ args .addAll (List .of (RecorderCliOptions .ClassName .shortOption () , className ));
150
150
}
151
151
return args ;
152
152
}
You can’t perform that action at this time.
0 commit comments