diff --git a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfigurationTests.java b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfigurationTests.java index b28ff65c1a..81a4f0a55b 100644 --- a/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfigurationTests.java +++ b/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfigurationTests.java @@ -140,17 +140,6 @@ public class ThymeleafAutoConfigurationTests { context.close(); } - @Test - public void useDataDialect() throws Exception { - this.context.register(ThymeleafAutoConfiguration.class, - PropertyPlaceholderAutoConfiguration.class); - this.context.refresh(); - TemplateEngine engine = this.context.getBean(TemplateEngine.class); - Context attrs = new Context(Locale.UK, Collections.singletonMap("foo", "bar")); - String result = engine.process("data-dialect", attrs); - assertEquals("", result); - } - @Test public void renderTemplate() throws Exception { this.context.register(ThymeleafAutoConfiguration.class,