Browse Source

Fix unit test broken by parser changes.

tags/0.6.3m1rc1
Chris Smith 15 years ago
parent
commit
51eb754276
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      test/com/dmdirc/harness/parser/TestParser.java

+ 2
- 2
test/com/dmdirc/harness/parser/TestParser.java View File

@@ -35,12 +35,12 @@ public class TestParser extends IRCParser {
35 35
 
36 36
     public TestParser() {
37 37
         super();
38
-        currentSocketState = STATE_OPEN;
38
+        currentSocketState = SocketState.OPEN;
39 39
     }
40 40
 
41 41
     public TestParser(MyInfo myDetails, ServerInfo serverDetails) {
42 42
         super(myDetails, serverDetails);
43
-        currentSocketState = STATE_OPEN;
43
+        currentSocketState = SocketState.OPEN;
44 44
     }
45 45
 
46 46
     @Override

Loading…
Cancel
Save