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

Commit 0edc029

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

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,7 @@ public void setup() {
8383
env.getConfig().setRestartStrategy(RestartStrategies.noRestart());
8484
}
8585

86-
/** The fix is in release-1.13. */
8786
@Test
88-
@Ignore
8987
public void testAggregate() throws Exception {
9088
String topic = WORD_COUNT_TOPIC + "_" + format;
9189
createTestTopic(topic, 4);
@@ -411,7 +409,7 @@ private void wordCountToUpsertPulsar(String wordCountTable) throws Exception {
411409
private void wordFreqToUpsertPulsar(String wordCountTable) throws Exception {
412410
// ------------- test data ---------------
413411

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

416414
// ------------- create table ---------------
417415

0 commit comments

Comments
 (0)