After the recent move to consolidate shell.js code, this test broke due todifferent epsilon values used in different shell.js scripts. So this changejust makes the test values match exactly.

This commit is contained in:
nboyd@atg.com 2007-05-30 05:55:17 -07:00
Родитель be93799f4d
Коммит 80715445e7
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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++;