浏览代码

Fix unit test. Issue 2410

tags/0.6.3m2a1
Chris Smith 15 年前
父节点
当前提交
5721d96614
共有 1 个文件被更改,包括 1 次插入5 次删除
  1. 1
    5
      test/com/dmdirc/harness/TestWritableFrameContainer.java

+ 1
- 5
test/com/dmdirc/harness/TestWritableFrameContainer.java 查看文件

@@ -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);

正在加载...
取消
保存