Skip to content
Snippets Groups Projects
Commit 45a60ae4 authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-6748 FormDataEndpointITCase: Remove contentStream tests

parent b1498fc1
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