After the recent move to consolidate shell.js code, this test broke due to

different epsilon values used in different shell.js scripts. So this change
just makes the test values match exactly.


git-svn-id: svn://10.0.0.236/trunk@227249 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nboyd%atg.com 2007-05-30 12:55:17 +00:00
parent 2bf1ca06f1
commit 810076a04c

View File

@ -113,9 +113,9 @@ test_array[i] = new TestValue( "(new java.lang.Long( '1234567891234567' )).longV
// Call a java function that returns a value whose type is float
java_array[i] = new JavaValue( (new java.lang.Float( '1.23456789' )).floatValue() );
test_array[i] = new TestValue( "(new java.lang.Float( '1.23456789' )).floatValue()",
1.23456789,
java_array[i] = new JavaValue( (new java.lang.Float( '1234.5' )).floatValue() );
test_array[i] = new TestValue( "(new java.lang.Float( '1234.5' )).floatValue()",
1234.5,
E_TYPE );
i++;