Skip to content

Commit aae8fd9

Browse files
committed
#187: CR comments addressed
1 parent 7c49961 commit aae8fd9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,9 @@ and add `failsafe.rerunFailingTestsCount` or `surefire.rerunFailingTestsCount` p
337337
In some cases, you may need to customize the test name for BDD Scenario Outlines (for example, to insert parameters into
338338
the test name in ReportPortal). To achieve this, you need to implement the desired customization logic in a class which
339339
implements the `TestNameProvider` interface. This class should then be specified in the `ReportIntegrationConfig`.
340-
For example, to provide ability for test name to insert parameters, I need to do the following
340+
For example, to provide ability for test name to insert parameters, the following steps should be performed:
341341

342-
1. Create class `ParametrizedNameProvider`:
342+
1. Create class `ParametrizedNameProvider`
343343

344344
```
345345
public class ParametrizedNameProvider implements TestNameProvider {
@@ -366,7 +366,7 @@ public class ParametrizedNameProvider implements TestNameProvider {
366366
}
367367
```
368368

369-
2. Update integration configuration:
369+
2. Update integration configuration
370370

371371
```
372372
ReportIntegrationConfig.get().useTestNameTransformer(new ParametrizedNameProvider());

0 commit comments

Comments
 (0)