You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by to...@apache.org on 2007/07/06 07:47:20 UTC

svn commit: r553742 - /harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/tests/api/java/net/MulticastSocketTest.java

Author: tonywu
Date: Thu Jul  5 22:47:19 2007
New Revision: 553742

URL: http://svn.apache.org/viewvc?view=rev&rev=553742
Log:
Remove the assertion since it fails on both RI and Harmony in IPv6 Env

Modified:
    harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/tests/api/java/net/MulticastSocketTest.java

Modified: harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/tests/api/java/net/MulticastSocketTest.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/tests/api/java/net/MulticastSocketTest.java?view=diff&rev=553742&r1=553741&r2=553742
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/tests/api/java/net/MulticastSocketTest.java (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/src/test/api/common/tests/api/java/net/MulticastSocketTest.java Thu Jul  5 22:47:19 2007
@@ -878,17 +878,6 @@
                         assertTrue(
                                 "Group member did not recv data when send on a specific interface: ",
                                 receivedMessage.equals(msg));
-                        assertTrue(
-                                "Datagram was not received from expected interface expected["
-                                        + thisInterface
-                                        + "] got ["
-                                        + NetworkInterface
-                                                .getByInetAddress(server.rdp
-                                                        .getAddress()) + "]",
-                                NetworkInterface.getByInetAddress(
-                                        server.rdp.getAddress()).equals(
-                                        thisInterface));
-
                         // stop the server
                         server.stopServer();
                     }