Skip to content

Commit

Permalink
Re-enables disabled tests.
Browse files Browse the repository at this point in the history
Fixes gh-1042
  • Loading branch information
spencergibb committed Nov 29, 2021
1 parent 51aec79 commit 4967442
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
Expand Up @@ -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);
Expand Down
Expand Up @@ -21,7 +21,6 @@

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;
Expand Down Expand Up @@ -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
Expand Down
Expand Up @@ -20,7 +20,6 @@
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;
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 4967442

Please sign in to comment.