Skip to content

Commit 631eb24

Browse files
committed
Merge #1029 'JUnitOptions filename-compatible-names argument'.
Also update History.md.
2 parents 1327806 + f20c852 commit 631eb24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

History.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* [Core] Specifying plugins on the command line via `--plugin` clobbers settings in the code ([#860](https://github.com/cucumber/cucumber-jvm/pull/860) Björn Rasmusson)
55
* [Core] Make test assertion OS agnostic ([#897](https://github.com/cucumber/cucumber-jvm/pull/897/files) sid)
66
* [Travis] Improve the travis build ([#829](https://github.com/cucumber/cucumber-jvm/pull/829) Björn Rasmusson)
7-
* [Core, Junit] Passthrough options for the JUnit Module ([#1002](https://github.com/cucumber/cucumber-jvm/pull/1002) Also resolves [#825](https://github.com/cucumber/cucumber-jvm/pull/825) and [#972](https://github.com/cucumber/cucumber-jvm/issues/972) Björn Rasmusson)
7+
* [Core, Junit] Passthrough options for the JUnit Module ([#1002](https://github.com/cucumber/cucumber-jvm/pull/1002), [#1029](https://github.com/cucumber/cucumber-jvm/pull/1029). Also resolves [#825](https://github.com/cucumber/cucumber-jvm/pull/825) and [#972](https://github.com/cucumber/cucumber-jvm/issues/972). Björn Rasmusson, with bug fix by Bernd Bindreiter)
88
* [Android, Core, Guice, Junit] Improve code quality ensuring Utility Classes cannot be instantiated ([#945](https://github.com/cucumber/cucumber-jvm/pull/945) Kirill Vlasov)
99
* [Core, Guice, Testng] Improve code quality using isEmpty instead of size comparison ([#942](https://github.com/cucumber/cucumber-jvm/pull/942) Kirill Vlasov)
1010
* [Clojure] Don't depend on cucumber-core in the clojure example ([#947](https://github.com/cucumber/cucumber-jvm/pull/947 Joe Corneli)

junit/src/main/java/cucumber/runtime/junit/JUnitOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ private void parse(List<String> args) {
3636
System.exit(0);
3737
} else if (arg.equals("--no-allow-started-ignored") || arg.equals("--allow-started-ignored")) {
3838
allowStartedIgnored = !arg.startsWith("--no-");
39-
} else if (arg.equals("--filename-compatible-names") || arg.equals("--filename-compatible-names")) {
39+
} else if (arg.equals("--no-filename-compatible-names") || arg.equals("--filename-compatible-names")) {
4040
filenameCompatibleNames = !arg.startsWith("--no-");
4141
} else {
4242
throw new CucumberException("Unknown option: " + arg);

0 commit comments

Comments
 (0)