Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
name: "add managed dependency to Maven"
groupId: org.springframework.boot
artifactId: spring-boot-dependencies
version: 2.6.3
version: 2.7.3
dependencyType: pom
scope: import
description: Add Spring Boot dependency management section to buildfile.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

import static org.assertj.core.api.Assertions.assertThat;

@Disabled("See #")
public class WebXmlTest {

public static final String GIVEN_SERVLET_NAME = "TheServlet";
Expand All @@ -53,6 +52,7 @@ public class WebXmlTest {
"</web-app>";

@Test
@Disabled("See #416")
void deserializeMovieFunExampleWebXml() {
String webXmlSource = """
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
Expand Down Expand Up @@ -94,6 +94,7 @@ void deserializeMovieFunExampleWebXml() {
}

@Test
@Disabled("See #416")
void deserializeWebXml() throws IOException, JAXBException {

String expectedXml =
Expand Down Expand Up @@ -124,6 +125,7 @@ void deserializeWebXml() throws IOException, JAXBException {
}

@Test
@Disabled("See #416")
void deleteServletDefinition() throws JAXBException {
String expectedXml =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n" +
Expand Down