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:
parent
2bf1ca06f1
commit
810076a04c
@ -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++;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user