You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by pn...@apache.org on 2021/12/15 13:14:50 UTC

[flink] branch release-1.14 updated: [FLINK-24846][streaming] Guava import fix in AsyncWaitOperatorTest

This is an automated email from the ASF dual-hosted git repository.

pnowojski pushed a commit to branch release-1.14
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.14 by this push:
     new 8d5d7d4  [FLINK-24846][streaming] Guava import fix in AsyncWaitOperatorTest
8d5d7d4 is described below

commit 8d5d7d46463b83d6be7e68615de8bc53466d519d
Author: Anton Kalashnikov <ka...@yandex.ru>
AuthorDate: Wed Dec 15 14:11:00 2021 +0100

    [FLINK-24846][streaming] Guava import fix in AsyncWaitOperatorTest
---
 .../flink/streaming/api/operators/async/AsyncWaitOperatorTest.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperatorTest.java b/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperatorTest.java
index 9916a89..be57817 100644
--- a/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperatorTest.java
+++ b/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/async/AsyncWaitOperatorTest.java
@@ -65,12 +65,13 @@ import org.apache.flink.util.ExceptionUtils;
 import org.apache.flink.util.Preconditions;
 import org.apache.flink.util.TestLogger;
 
+import org.apache.flink.shaded.guava30.com.google.common.collect.Lists;
+
 import org.hamcrest.Matchers;
 import org.junit.Assert;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.Timeout;
-import org.testcontainers.shaded.com.google.common.collect.Lists;
 
 import java.util.ArrayDeque;
 import java.util.ArrayList;