File tree Expand file tree Collapse file tree
src/test/java/io/confluent/connect/elasticsearch Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -488,18 +488,6 @@ public void testTimestampMappingDataStreamNotSet() {
488488 assertHasErrorMessage (result , DATA_STREAM_TIMESTAMP_CONFIG , TIMESTAMP_FIELD_NOT_ALLOWED_ERROR );
489489 }
490490
491- @ Test
492- public void testIncompatibleVersionDataStreamSet () throws IOException {
493- configureDataStream ();
494- validator = new Validator (props , () -> mockClient );
495- when (mockClient .info ().version ().number ()).thenReturn ("7.8.1" );
496-
497- Config result = validator .validate ();
498- assertHasErrorMessage (result , CONNECTION_URL_CONFIG , "not compatible with data streams" );
499- assertHasErrorMessage (result , DATA_STREAM_TYPE_CONFIG , "not compatible with data streams" );
500- assertHasErrorMessage (result , DATA_STREAM_DATASET_CONFIG , "not compatible with data streams" );
501- }
502-
503491 @ Test
504492 public void testIncompatibleVersionDataStreamNotSet () throws IOException {
505493 validator = new Validator (props , () -> mockClient );
You can’t perform that action at this time.
0 commit comments