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

fix expected data for UpsertPulsarTableITCase #479

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import org.apache.flink.types.Row;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
Expand Down Expand Up @@ -83,9 +82,7 @@ public void setup() {
env.getConfig().setRestartStrategy(RestartStrategies.noRestart());
}

/** The fix is in release-1.13. */
@Test
@Ignore
public void testAggregate() throws Exception {
String topic = WORD_COUNT_TOPIC + "_" + format;
createTestTopic(topic, 4);
Expand Down Expand Up @@ -411,7 +408,7 @@ private void wordCountToUpsertPulsar(String wordCountTable) throws Exception {
private void wordFreqToUpsertPulsar(String wordCountTable) throws Exception {
// ------------- test data ---------------

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

// ------------- create table ---------------

Expand Down