Re-enables disabled tests.

Fixes gh-1042
This commit is contained in:
spencergibb
2021-11-29 12:14:44 -05:00
parent 51aec79bb4
commit 4967442474
3 changed files with 0 additions and 5 deletions

View File

@@ -56,7 +56,6 @@ public class ConfigurationPropertiesRebinderListIntegrationTests {
@Test
@DirtiesContext
@Disabled("caused by https://github.com/spring-projects/spring-boot/issues/28776")
public void testAppendProperties() {
then(this.properties.getMessages()).containsOnly("one", "two");
TestPropertyValues.of("messages[0]:foo").applyTo(this.environment);

View File

@@ -21,7 +21,6 @@ import java.util.Map;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
@@ -56,7 +55,6 @@ public class ConfigurationPropertiesRebinderProxyIntegrationTests {
@Test
@DirtiesContext
@Disabled("caused by https://github.com/spring-projects/spring-boot/issues/28776")
public void testAppendProperties() throws Exception {
// This comes out as a String not Integer if the rebinder processes the proxy
// instead of the target

View File

@@ -20,7 +20,6 @@ import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.aop.framework.Advised;
@@ -57,7 +56,6 @@ public class RefreshScopeListBindingIntegrationTests {
@Test
@DirtiesContext
@Disabled("caused by https://github.com/spring-projects/spring-boot/issues/28776")
public void testAppendProperties() throws Exception {
then("[one, two]").isEqualTo(this.properties.getMessages().toString());
then(this.properties instanceof Advised).isTrue();