Unignore DatagramMulticastTest because it seems to pass on Linux, MacOS X, and Windows

More specifically: Ubuntu Linux 13.04, MacOS X Lion, Windows 7
This commit is contained in:
Trustin Lee 2013-04-24 17:56:52 +09:00
parent 8a4e708847
commit 24551ccfff

View File

@ -25,7 +25,6 @@ import io.netty.channel.socket.DatagramChannel;
import io.netty.channel.socket.DatagramPacket;
import io.netty.channel.socket.oio.OioDatagramChannel;
import io.netty.util.NetUtil;
import org.junit.Ignore;
import org.junit.Test;
import java.net.InetSocketAddress;
@ -37,7 +36,6 @@ import static org.junit.Assert.*;
public class DatagramMulticastTest extends AbstractDatagramTest {
@Test
@Ignore("Ignore because it does give different behavior on different OS, need to investigate!")
public void testMulticast() throws Throwable {
run();
}