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

@ -1,4 +1,4 @@
# [Bld](https://rife2.com/bld) Extension to Run Test with [TestNG](https://testng.org/)
# [Bld](https://rife2.com/bld) Extension to Run Tests with [TestNG](https://testng.org/)
[![License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

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;
}