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

Commit

Permalink
fix expected data for test
Browse files Browse the repository at this point in the history
  • Loading branch information
jianyun8023 committed Dec 3, 2021
1 parent 74cd95a commit c89ae6b
Showing 1 changed file with 1 addition and 4 deletions.
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

0 comments on commit c89ae6b

Please sign in to comment.