Skip to content

Commit 8e3fa81

Browse files
committed
Fix checkstyle
1 parent bb564f0 commit 8e3fa81

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sdks/java/testing/junit/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ dependencies {
3232
// Needed to resolve TestPipeline's JUnit 4 TestRule type and @Category at compile time,
3333
// but should not leak to consumers at runtime.
3434
provided library.java.junit
35+
permitUnusedDeclared(library.java.junit)
3536

3637
// JUnit 5 API needed to compile the extension; not packaged for consumers of core.
3738
provided library.java.jupiter_api

sdks/java/testing/junit/src/main/java/org/apache/beam/sdk/testing/TestPipelineExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.util.Collection;
2525
import org.apache.beam.sdk.options.ApplicationNameOptions;
2626
import org.apache.beam.sdk.options.PipelineOptions;
27-
import org.apache.beam.vendor.grpc.v1p69p0.com.google.common.collect.ImmutableList;
27+
import org.apache.beam.vendor.guava.v32_1_2_jre.com.google.common.collect.ImmutableList;
2828
import org.checkerframework.checker.nullness.qual.Nullable;
2929
import org.junit.jupiter.api.extension.AfterEachCallback;
3030
import org.junit.jupiter.api.extension.BeforeEachCallback;

0 commit comments

Comments
 (0)