From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9694 invoked by alias); 21 Sep 2006 17:12:29 -0000 Received: (qmail 9680 invoked by uid 22791); 21 Sep 2006 17:12:28 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 21 Sep 2006 17:12:25 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k8LHCNkn002138 for ; Thu, 21 Sep 2006 13:12:23 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k8LHCMqb008840 for ; Thu, 21 Sep 2006 13:12:22 -0400 Received: from toothpaste.toronto.redhat.com (toothpaste.toronto.redhat.com [172.16.14.161]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id k8LHCMY7005339 for ; Thu, 21 Sep 2006 13:12:22 -0400 Subject: Re: FYI: JTable From: Tania Bento To: mauve-patches@sources.redhat.com In-Reply-To: <1158858523.2703.43.camel@toothpaste.toronto.redhat.com> References: <1158171546.12061.50.camel@toothpaste.toronto.redhat.com> <1158858523.2703.43.camel@toothpaste.toronto.redhat.com> Content-Type: multipart/mixed; boundary="=-qoePUDQBREboIS1/XjhG" Date: Thu, 21 Sep 2006 17:12:00 -0000 Message-Id: <1158858742.2703.45.camel@toothpaste.toronto.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2006/txt/msg00665.txt.bz2 --=-qoePUDQBREboIS1/XjhG Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 648 I just noticed that the expected value of a test case was incorrect. I changed it to the correct value and and committed it. 2006-09-21 Tania Bento * gnu/testlet/javax/swing/JTable/getCellRect.java: Changed expected value of one test case. On Wed, 2006-09-13 at 14:19 -0400, Tania Bento wrote: > > Hey, > > > > This new test file (committed) tests the width of the cellRect, when the > > getCellRect method from javax.swing.JTable is called. > > > > 2006-09-13 Tania Bento > > > > * gnu/testlet/javax/swing/JTable/getCellRect.java: New test. > > > > Cheers, > > Tania --=-qoePUDQBREboIS1/XjhG Content-Disposition: attachment; filename=patch.diff Content-Type: text/x-patch; name=patch.diff; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-length: 725 Index: gnu/testlet/javax/swing/JTable/getCellRect.java =================================================================== RCS file: /cvs/mauve/mauve/gnu/testlet/javax/swing/JTable/getCellRect.java,v retrieving revision 1.2 diff -u -r1.2 getCellRect.java --- gnu/testlet/javax/swing/JTable/getCellRect.java 13 Sep 2006 20:26:09 -0000 1.2 +++ gnu/testlet/javax/swing/JTable/getCellRect.java 21 Sep 2006 17:08:22 -0000 @@ -39,7 +39,7 @@ Rectangle rectangle = table.getCellRect(0, 0, false); harness.check(rectangle.x, 0); harness.check(rectangle.y, 0); - harness.check(rectangle.width, 75); + harness.check(rectangle.width, 0); harness.check(rectangle.height, 0); table = new JTable(2, 3); --=-qoePUDQBREboIS1/XjhG--