Browse Source

Remove unit test that no longer makes sense and times out

Change-Id: Ia973c8cfa920cc74a8a3a2f7cce3a2ab63e2a54e
Reviewed-on: http://gerrit.dmdirc.com/776
Automatic-Compile: Chris Smith <chris@dmdirc.com>
Reviewed-by: Chris Smith <chris@dmdirc.com>
tags/0.6.3
Chris Smith 14 years ago
parent
commit
33c60f07de
1 changed files with 0 additions and 9 deletions
  1. 0
    9
      test/com/dmdirc/parser/irc/IRCParserTest.java

+ 0
- 9
test/com/dmdirc/parser/irc/IRCParserTest.java View File

@@ -343,15 +343,6 @@ public class IRCParserTest {
343 343
                 anyString(), anyString());
344 344
     }
345 345
     
346
-    @Test
347
-    public void testIllegalPort1() throws URISyntaxException {
348
-        final TestParser tp = new TestParser(new MyInfo(), new URI("irc://127.0.0.1:0/"));
349
-        final ConnectErrorListener tiei = mock(ConnectErrorListener.class);
350
-        tp.getCallbackManager().addCallback(ConnectErrorListener.class, tiei);
351
-        tp.runSuper();
352
-        verify(tiei).onConnectError(same(tp), (ParserError) anyObject());
353
-    }
354
-    
355 346
     @Test
356 347
     public void testIllegalPort2() throws URISyntaxException {
357 348
         final TestParser tp = new TestParser(new MyInfo(), new URI("irc://127.0.0.1:65570/"));

Loading…
Cancel
Save