Updates the default group used by the task processor sample

resolves spring-cloud/spring-cloud-task#122
This commit is contained in:
Glenn Renfro
2016-04-13 16:40:03 -04:00
committed by Michael Minella
parent 08f7b77aed
commit 1cd18497b8
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ public class TaskProcessorApplicationTests {
Map<String, String> properties = new HashMap();
properties.put("payload", DEFAULT_PAYLOAD);
TaskLaunchRequest expectedRequest = new TaskLaunchRequest("timestamp-task",
"io.spring", "1.0.0.BUILD-SNAPSHOT", "jar", null, properties);
"io.spring.cloud", "1.0.0.BUILD-SNAPSHOT", "jar", null, properties);
assertThat(collector.forChannel(channels.output()), receivesPayloadThat(is(expectedRequest)));
}