Fix #579: Pipeline, Task Entities and PipeineService for Airflow, Prefect

This commit is contained in:
Sriharsha Chintalapani 2021-09-25 07:43:03 -07:00
parent a1fd954e21
commit ad07e6bd57

View File

@ -88,7 +88,7 @@ public class PipelineServiceResourceTest extends CatalogApplicationTest {
// Create pipeline with mandatory brokers field empty
exception = assertThrows(HttpResponseException.class, () ->
createService(create(test).withPipelineUrl(null), adminAuthHeaders()));
TestUtils.assertResponse(exception, BAD_REQUEST, "[url must not be null]");
TestUtils.assertResponse(exception, BAD_REQUEST, "[pipelineUrl must not be null]");
}
@Test