Skip to content

Commit

Permalink
[Improve][e2e] update e2e test case
Browse files Browse the repository at this point in the history
  • Loading branch information
liunaijie committed Mar 12, 2024
1 parent e2a408a commit c964f1f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package org.apache.seatunnel.engine.e2e;

import org.apache.seatunnel.e2e.common.TestSuiteBase;
import org.apache.seatunnel.e2e.common.container.EngineType;
import org.apache.seatunnel.e2e.common.container.TestContainer;
import org.apache.seatunnel.e2e.common.junit.DisabledOnContainer;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.TestTemplate;
Expand All @@ -14,6 +16,9 @@
public class UserVariableIT extends TestSuiteBase {

@TestTemplate
@DisabledOnContainer(
value = {},
type = {EngineType.FLINK})
public void userVariableTest(TestContainer container) throws IOException, InterruptedException {
List<String> variables = new ArrayList<>();
variables.add("resName=fake");
Expand Down

0 comments on commit c964f1f

Please sign in to comment.