diff --git a/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests-context.xml b/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests-context.xml index fdd49b3c43..badb3aaca7 100644 --- a/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests-context.xml +++ b/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests-context.xml @@ -33,7 +33,7 @@ @@ -41,7 +41,7 @@ diff --git a/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests.java b/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests.java index 9bd626bb9e..c2252de1cc 100644 --- a/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests.java +++ b/spring-integration-groovy/src/test/java/org/springframework/integration/groovy/config/GroovyServiceActivatorTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2016 the original author or authors. + * Copyright 2002-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -148,7 +148,7 @@ public class GroovyServiceActivatorTests { this.inlineScriptInput.send(message); } - DateFormat format = new SimpleDateFormat("dd.mm.yyyy"); + DateFormat format = new SimpleDateFormat("dd.MM.yyyy"); String now = format.format(new Date()); @@ -168,7 +168,7 @@ public class GroovyServiceActivatorTests { this.scriptWithoutVariablesInput.send(message); } - DateFormat format = new SimpleDateFormat("dd.mm.yyyy"); + DateFormat format = new SimpleDateFormat("dd.MM.yyyy"); String now = format.format(new Date());