Minore cleanup

This commit is contained in:
Erik C. Thauvin 2023-08-15 09:58:47 -07:00
parent b3d3cfe81f
commit 7ac1b4a452
2 changed files with 3 additions and 3 deletions

View file

@ -156,8 +156,8 @@ public class TestNgOperation extends AbstractProcessOperation<TestNgOperation> {
* Lets you specify method selectors on the command line.
* For example: {@code "com.example.Selector1:3", "com.example.Selector2:2"}
*/
public TestNgOperation methodSelectors(String... detector) {
options.put("-methodselectors", String.join(",", detector));
public TestNgOperation methodSelectors(String... selector) {
options.put("-methodselectors", String.join(",", selector));
return this;
}