Skip to content
Snippets Groups Projects
Commit 08aa7c5d authored by OZG-Cloud Team's avatar OZG-Cloud Team
Browse files

OZG-6748 FormDataEndpointITCase: Remove contentStream tests

parent 57ed56a2
No related branches found
No related tags found
No related merge requests found
...@@ -382,15 +382,6 @@ class FormDataEndpointITCase { ...@@ -382,15 +382,6 @@ class FormDataEndpointITCase {
assertThat(file.getContent().size()).isZero(); assertThat(file.getContent().size()).isZero();
} }
@Test
void checkForAttachmentFileContentStream() {
sendRequest();
var fileStream = formDataCaptor.getValue().getAttachments().get(0).getFiles().get(0).getContentStream();
assertThat(fileStream).isNotNull();
}
@Test @Test
void checkAttachmentGroup2Count() { void checkAttachmentGroup2Count() {
sendRequest(); sendRequest();
...@@ -437,14 +428,6 @@ class FormDataEndpointITCase { ...@@ -437,14 +428,6 @@ class FormDataEndpointITCase {
assertThat(file.getContent().size()).isZero(); assertThat(file.getContent().size()).isZero();
} }
@Test
void checkForRepresentationFileContentStream() {
sendRequest();
var fileStream = formDataCaptor.getValue().getRepresentations().get(0).getContentStream();
assertThat(fileStream).isNotNull();
}
} }
@DisplayName("service konto") @DisplayName("service konto")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment