Skip to content

Commit

Permalink
Update CHANGELOG for v6.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkorstanje committed Jul 9, 2020
1 parent 6122f69 commit 15c5834
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

## [6.2.2] (2020-07-09)

### Fixed
- [JUnit] Make duplicate pickle names unique ([#2045](https://github.com/cucumber/cucumber-jvm/issues/2045) M.P. Korstanje)

## [6.2.1] (2020-07-07)

### Fixed
Expand Down Expand Up @@ -1460,7 +1465,8 @@ in `cucumber.api` stable from now on, with proper deprecation warnings in case s
* First proper release

<!-- Releases -->
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.2.1...main
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.2.2...main
[6.2.2]: https://github.com/cucumber/cucumber-jvm/compare/v6.2.1...v6.2.2
[6.2.1]: https://github.com/cucumber/cucumber-jvm/compare/v6.2.0...v6.2.1
[6.2.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.1.2...v6.2.0
[6.1.2]: https://github.com/cucumber/cucumber-jvm/compare/v6.1.1...v6.1.2
Expand Down
3 changes: 2 additions & 1 deletion junit/src/test/java/io/cucumber/junit/FeatureRunnerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,8 @@ void should_filter_pickles() {

FeatureRunner featureRunner = FeatureRunner.create(feature, null, filters, runnerSupplier, new JUnitOptions());
assertThat(featureRunner.getChildren().size(), is(1));
assertThat(featureRunner.getChildren().get(0).getDescription().getDisplayName(), is("scenario_2 name(feature name)"));
assertThat(featureRunner.getChildren().get(0).getDescription().getDisplayName(),
is("scenario_2 name(feature name)"));
}

}

0 comments on commit 15c5834

Please sign in to comment.