Unignore rabbit test

This commit is contained in:
Dave Syer
2016-09-07 10:10:17 +01:00
parent ef0cbe904c
commit 0bf665e285
2 changed files with 2 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
package org.test package org.test
@EnableBinding(transport="rabbit") @EnableBinding(value=Source, transport="rabbit")
class Example { class Example {
} }

View File

@@ -20,7 +20,6 @@ import static org.junit.Assert.assertTrue;
import java.io.File; import java.io.File;
import java.net.URI; import java.net.URI;
import org.junit.Ignore;
import org.junit.Rule; import org.junit.Rule;
import org.junit.Test; import org.junit.Test;
@@ -56,11 +55,10 @@ public class SampleIntegrationTests {
} }
@Test @Test
@Ignore("Seems like this might still be working but the logs are different?")
public void rabbitSample() throws Exception { public void rabbitSample() throws Exception {
String output = this.cli.run("rabbit.groovy"); String output = this.cli.run("rabbit.groovy");
assertTrue("Wrong output: " + output, assertTrue("Wrong output: " + output,
output.contains("Registering MessageChannel errorChannel")); output.contains("subscriber to the 'errorChannel' channel"));
} }
@Test @Test