This is the mail archive of the
mauve-patches@sourceware.org
mailing list for the Mauve project.
FYI: TextArea.constructors - minor fix
- From: David Gilbert <david dot gilbert at object-refinery dot com>
- To: mauve-patches <mauve-patches at sources dot redhat dot com>
- Date: Fri, 30 Jun 2006 10:27:13 +0100
- Subject: FYI: TextArea.constructors - minor fix
This patch (committed) fixes a small error in my previous patch:
2006-06-30 David Gilbert <david.gilbert@object-refinery.com>
* gnu/testlet/java/awt/TextArea/constructors.java
(test): Call testConstructor5().
Regards,
Dave
Index: gnu/testlet/java/awt/TextArea/constructors.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/java/awt/TextArea/constructors.java,v
retrieving revision 1.1
diff -u -r1.1 constructors.java
--- gnu/testlet/java/awt/TextArea/constructors.java 30 Jun 2006 09:06:29 -0000 1.1
+++ gnu/testlet/java/awt/TextArea/constructors.java 30 Jun 2006 09:24:28 -0000
@@ -37,6 +37,7 @@
testConstructor2(harness);
testConstructor3(harness);
testConstructor4(harness);
+ testConstructor5(harness);
}
public void testConstructor1(TestHarness harness)
@@ -171,8 +172,6 @@
harness.check(ta.getRows(), 3);
harness.check(ta.getColumns(), 0);
harness.check(ta.getScrollbarVisibility(), TextArea.SCROLLBARS_BOTH);
-
-
}
}