Ver código fonte

Fix unit test. Issue 2410

tags/0.6.3m2a1
Chris Smith 15 anos atrás
pai
commit
5721d96614

+ 1
- 5
test/com/dmdirc/harness/TestWritableFrameContainer.java Ver arquivo

@@ -35,7 +35,7 @@ public class TestWritableFrameContainer extends WritableFrameContainer {
35 35
     private final int lineLength;
36 36
 
37 37
     public TestWritableFrameContainer(final int lineLength, final ConfigManager cm) {
38
-        super("raw", cm);
38
+        super("raw", "Raw", cm);
39 39
 
40 40
         this.lineLength = lineLength;
41 41
     }
@@ -56,10 +56,6 @@ public class TestWritableFrameContainer extends WritableFrameContainer {
56 56
         return lineLength;
57 57
     }
58 58
 
59
-    public String toString() {
60
-        return "window";
61
-    }
62
-
63 59
     public void windowClosing() {
64 60
         System.out.println("windowClosing");
65 61
         WindowManager.removeWindow(window);

Carregando…
Cancelar
Salvar