[Nice-commit] Nice/stdlib/nice/lang/reflect methods.nice,1.1,1.2
Brought to you by:
bonniot
From: <bo...@us...> - 2003-12-10 23:26:28
|
Update of /cvsroot/nice/Nice/stdlib/nice/lang/reflect In directory sc8-pr-cvs1:/tmp/cvs-serv28549/stdlib/nice/lang/reflect Modified Files: methods.nice Log Message: More robust test. Index: methods.nice =================================================================== RCS file: /cvsroot/nice/Nice/stdlib/nice/lang/reflect/methods.nice,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** methods.nice 8 Oct 2003 17:10:18 -0000 1.1 --- methods.nice 10 Dec 2003 23:26:25 -0000 1.2 *************** *** 57,62 **** java.io.File f = new java.io.File("."); ! String res = f.call("getCanonicalPath"); ! assert res.equals("."); } --- 57,62 ---- java.io.File f = new java.io.File("."); ! String res = f.call("getPath"); ! assert res.equals(".") : res; } |