slinkydeveloper commented on a change in pull request #18667:
URL: https://github.com/apache/flink/pull/18667#discussion_r804529128



##########
File path: 
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/plan/nodes/exec/TransformationsTest.java
##########
@@ -83,46 +80,6 @@ public void testLegacyStreamSource() {
         assertTrue(sourceTransform.getOperator().emitsProgressiveWatermarks());
     }
 
-    @Test
-    public void testStreamTransformationScanProvider() {
-        final JavaStreamTableTestUtil util = javaStreamTestUtil();
-        final StreamTableEnvironment env = util.tableEnv();
-
-        final Table table =
-                env.from(
-                        TableDescriptor.forConnector("values")
-                                .option("bounded", "false")
-                                .schema(dummySchema())
-                                .build());
-
-        final Transformation<RowData> transformation =
-                env.toChangelogStream(table)
-                        .<RowData>map(r -> new GenericRowData(0))
-                        .getTransformation();
-
-        assertFalse(TransformationScanProvider.of(transformation, 
"scan").isBounded());
-    }
-
-    @Test
-    public void testBatchTransformationScanProvider() {

Review comment:
       as discussed offline, we can remove them as they're only testing mocks 
now




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to