Skip to content
This repository was archived by the owner on Dec 14, 2022. It is now read-only.

Commit c89ae6b

Browse files
committed
fix expected data for test
1 parent 74cd95a commit c89ae6b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pulsar-flink-connector/src/test/java/org/apache/flink/streaming/connectors/pulsar/table/UpsertPulsarTableITCase.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import org.apache.flink.types.Row;
2929

3030
import org.junit.Before;
31-
import org.junit.Ignore;
3231
import org.junit.Test;
3332
import org.junit.runner.RunWith;
3433
import org.junit.runners.Parameterized;
@@ -83,9 +82,7 @@ public void setup() {
8382
env.getConfig().setRestartStrategy(RestartStrategies.noRestart());
8483
}
8584

86-
/** The fix is in release-1.13. */
8785
@Test
88-
@Ignore
8986
public void testAggregate() throws Exception {
9087
String topic = WORD_COUNT_TOPIC + "_" + format;
9188
createTestTopic(topic, 4);
@@ -411,7 +408,7 @@ private void wordCountToUpsertPulsar(String wordCountTable) throws Exception {
411408
private void wordFreqToUpsertPulsar(String wordCountTable) throws Exception {
412409
// ------------- test data ---------------
413410

414-
final List<String> expectedData = Arrays.asList("3,1", "2,1");
411+
final List<String> expectedData = Arrays.asList("+[3,1]", "+[2,1]");
415412

416413
// ------------- create table ---------------
417414

0 commit comments

Comments
 (0)