Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/cross-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@ jobs:
type: ga
- version: 27
type: ea
broken-by-issue: "https://github.com/junit-team/junit-framework/issues/5605"
broken-by-issue: "https://github.com/uber/NullAway/issues/1534"
- version: 26
type: ea
release: leyden
- version: 27
type: ea
release: valhalla
broken-by-issue: "https://github.com/uber/NullAway/issues/1534"
name: "OpenJDK ${{ matrix.jdk.version }} (${{ matrix.jdk.release || matrix.jdk.type }})"
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ checkstyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checks
classgraph = { module = "io.github.classgraph:classgraph", version = "4.8.184" }
commons-io = { module = "commons-io:commons-io", version = "2.21.0" }
error-prone-contrib = { module = "tech.picnic.error-prone-support:error-prone-contrib", version = "0.29.0" }
error-prone-core = { module = "com.google.errorprone:error_prone_core", version = "2.48.0" }
error-prone-core = { module = "com.google.errorprone:error_prone_core", version = "2.49.0" }
fastcsv = { module = "de.siegmar:fastcsv", version = "4.2.0" }
groovy = { module = "org.apache.groovy:groovy", version = "5.0.5" }
groovy2-bom = { module = "org.codehaus.groovy:groovy-bom", version = "2.5.23" }
Expand Down Expand Up @@ -60,7 +60,7 @@ mockito-bom = { module = "org.mockito:mockito-bom", version = "5.23.0" }
mockito-core = { module = "org.mockito:mockito-core" }
mockito-junit-jupiter = { module = "org.mockito:mockito-junit-jupiter" }
nohttp-checkstyle = { module = "io.spring.nohttp:nohttp-checkstyle", version = "0.0.11" }
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.13.1" }
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.13.3" }
opentest4j = { module = "org.opentest4j:opentest4j", version.ref = "opentest4j" }
openTestReporting-cli = { module = "org.opentest4j.reporting:open-test-reporting-cli", version.ref = "openTestReporting" }
openTestReporting-events = { module = "org.opentest4j.reporting:open-test-reporting-events", version.ref = "openTestReporting" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ static void assertLinesMatch(Stream<String> expectedLines, Stream<String> actual
assertLinesMatch(expectedLines, actualLines, (Object) message);
}

@SuppressWarnings("ReferenceEquality")
static void assertLinesMatch(Stream<String> expectedLines, Stream<String> actualLines,
@Nullable Object messageOrSupplier) {
notNull(expectedLines, "expectedLines must not be null");
Expand All @@ -69,6 +70,7 @@ static void assertLinesMatch(Stream<String> expectedLines, Stream<String> actual
assertLinesMatch(expectedListOfStrings, actualListOfStrings, messageOrSupplier);
}

@SuppressWarnings("ReferenceEquality")
static void assertLinesMatch(List<String> expectedLines, List<String> actualLines,
@Nullable Object messageOrSupplier) {
notNull(expectedLines, "expectedLines must not be null");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public String toString() {
*/
@API(status = EXPERIMENTAL, since = "6.1")
public sealed interface Configuration<T extends Configuration<T>>
permits AbstractConfiguration, DynamicTest.Configuration, DynamicContainer.Configuration {
permits AbstractConfiguration, DynamicContainer.Configuration, DynamicTest.Configuration {

/**
* Set the {@linkplain DynamicNode#getDisplayName() display name} to use
Expand Down
Loading