Skip to content

Commit a4ca5a0

Browse files
renovate-botvlsi
authored andcommitted
fix(deps): update dependency org.junit:junit-bom to v6
1 parent 448f5ce commit a4ca5a0

4 files changed

Lines changed: 6 additions & 14 deletions

File tree

build-logic/verification/src/main/kotlin/build-logic.jacoco-aggregate.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ plugins {
2626

2727
val jacocoAggregation by configurations.creating {
2828
description = "Collects project dependencies for JaCoCo coverage report aggregation"
29-
isVisible = false
3029
isTransitive = true
3130
isCanBeResolved = false
3231
isCanBeConsumed = false

gradle/verification-metadata.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,11 @@
931931
<sha256 value="b3d9832f5c11bbb6b0e62851b93aa29d278c39fb1a751eb771b46d004a216219" origin="Generated by Gradle"/>
932932
</artifact>
933933
</component>
934+
<component group="org.junit" name="junit-bom" version="6.0.1">
935+
<artifact name="junit-bom-6.0.1.pom">
936+
<sha256 value="e315c5ccbb087216dce04ae70c32bf1762be2a0b8a43ef81e3ba78317a4cd5c8" origin="Generated by Gradle"/>
937+
</artifact>
938+
</component>
934939
<component group="org.mockito" name="mockito-bom" version="5.20.0">
935940
<artifact name="mockito-bom-5.20.0.pom">
936941
<pgp value="147B691A19097624902F4EA9689CBE64F4BC997F"/>

src/bom-testing/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ javaPlatform {
2626
}
2727

2828
dependencies {
29-
api(platform("org.junit:junit-bom:5.14.1"))
29+
api(platform("org.junit:junit-bom:6.0.1"))
3030
api(platform("org.springframework:spring-framework-bom:7.0.0"))
3131
api(platform("org.eclipse.jetty:jetty-bom:11.0.26"))
3232

src/core/src/test/java/org/apache/jmeter/util/JSR223TestElementTest.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,15 @@
1818
package org.apache.jmeter.util;
1919

2020
import static org.junit.jupiter.api.Assertions.assertEquals;
21-
import static org.junit.jupiter.api.Assertions.assertTrue;
2221

2322
import org.junit.jupiter.api.Test;
24-
import org.junit.jupiter.api.condition.DisabledForJreRange;
25-
import org.junit.jupiter.api.condition.JRE;
2623

2724
public class JSR223TestElementTest {
2825

2926
@SuppressWarnings("serial")
3027
private JSR223TestElement element = new JSR223TestElement() {
3128
};
3229

33-
@Test
34-
@DisabledForJreRange(min = JRE.JAVA_15, max = JRE.OTHER, disabledReason = "The default JavaScript engine has been removed in Java 15+")
35-
public void testGetScriptEngineJS() throws Exception {
36-
element.setScriptLanguage("JavaScript");
37-
String languageName = element.getScriptEngine().getFactory().getLanguageName();
38-
assertTrue(languageName.contains("Script"),
39-
() -> "getFactory().getLanguageName() should contain Script, got " + languageName);
40-
}
41-
4230
@Test
4331
public void testGetScriptEngineDefault() throws Exception {
4432
element.setScriptLanguage("");

0 commit comments

Comments
 (0)