We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 762c39a commit 8a84dc2Copy full SHA for 8a84dc2
junit-jupiter-params/src/main/java/org/junit/jupiter/params/ParameterizedTestExtension.java
@@ -154,7 +154,7 @@ private ArgumentCountValidationMode getArgumentCountValidationModeConfiguration(
154
String key = ARGUMENT_COUNT_VALIDATION_KEY;
155
ArgumentCountValidationMode fallback = ArgumentCountValidationMode.NONE;
156
ExtensionContext.Store store = getStoreInExtensionNamespace(extensionContext);
157
- return store.getOrComputeIfAbsent(key, k -> {
+ return store.getOrComputeIfAbsent(key, __ -> {
158
Optional<String> optionalConfigValue = extensionContext.getConfigurationParameter(key);
159
if (optionalConfigValue.isPresent()) {
160
String configValue = optionalConfigValue.get();
0 commit comments