Skip to content

Commit

Permalink
AAE-32755 revert
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciech-piotrowiak committed Mar 9, 2025
1 parent b1b369e commit 663d754
Showing 1 changed file with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
import org.testcontainers.junit.jupiter.Testcontainers;

@SpringBootTest(
classes = {QueryRestTestApplication.class, AlfrescoWebAutoConfiguration.class},
properties = {"spring.main.banner-mode=off", "spring.jpa.properties.hibernate.enable_lazy_load_no_trans=false"}
classes = { QueryRestTestApplication.class, AlfrescoWebAutoConfiguration.class },
properties = { "spring.main.banner-mode=off", "spring.jpa.properties.hibernate.enable_lazy_load_no_trans=false" }
)
@TestPropertySource("classpath:application-test.properties")
@Testcontainers
Expand Down Expand Up @@ -146,11 +146,6 @@ void should_returnServiceTasks_filteredByCompletedDateTo() {
.param("completedTo", dateTimeFormatter.format(new Date(2000)))
.accept(MediaType.APPLICATION_JSON)
.when()
.get(SEARCH_ENDPOINT)
.then().
extract().response().prettyPrint();
//.statusCode(200)
//.body(ENTRIES_ROOT, hasSize(2))
//.body(SERVICE_TASKS_ID_ROOT, containsInAnyOrder("1", "2"));
.get(SEARCH_ENDPOINT);
}
}

0 comments on commit 663d754

Please sign in to comment.