Patch: fix for test PR162.java

Tom Tromey tromey@cygnus.com
Tue Mar 7 21:41:00 GMT 2000


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


More information about the Java-patches mailing list