This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: fix for test PR162.java


This patch fixes a dumb error on my part.

2000-03-07  Tom Tromey  <tromey@cygnus.com>

	* libjava.lang/PR162.java: Mention `PR162', not `Test', as class
	name.

Tom

Index: libjava.lang/PR162.java
===================================================================
RCS file: /cvs/java/libgcj/libjava/testsuite/libjava.lang/PR162.java,v
retrieving revision 1.1
diff -u -r1.1 PR162.java
--- PR162.java	2000/03/07 18:06:31	1.1
+++ PR162.java	2000/03/08 05:40:25
@@ -1,16 +1,16 @@
 interface I
 {
-  int i = 1, ii = Test.out ("ii", 2);
+  int i = 1, ii = PR162.out ("ii", 2);
 }
 
 interface J extends I
 {
-  int j = Test.out ("j", 3), jj = Test.out ("jj", 4);
+  int j = PR162.out ("j", 3), jj = PR162.out ("jj", 4);
 }
 
 interface K extends J
 {
-  int k = Test.out ("k", 5);
+  int k = PR162.out ("k", 5);
 }
 
 public class PR162

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]