# HG changeset patch # User Jaroslav Tulach # Date 1452777200 -3600 # Node ID c3a7ad415a8a1b707be705d17142517be8b0177d # Parent e77bcc4e4af688e8d31cdf9f1496ee35d4eb63db Improving formating diff -r e77bcc4e4af6 -r c3a7ad415a8a truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java --- a/truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java Thu Jan 14 14:12:46 2016 +0100 +++ b/truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java Thu Jan 14 14:13:20 2016 +0100 @@ -47,7 +47,6 @@ import org.junit.After; - import org.junit.Before; import org.junit.Test; import static org.junit.Assert.assertTrue; diff -r e77bcc4e4af6 -r c3a7ad415a8a truffle/com.oracle.truffle.tck/src/com/oracle/truffle/tck/TruffleTCK.java --- a/truffle/com.oracle.truffle.tck/src/com/oracle/truffle/tck/TruffleTCK.java Thu Jan 14 14:12:46 2016 +0100 +++ b/truffle/com.oracle.truffle.tck/src/com/oracle/truffle/tck/TruffleTCK.java Thu Jan 14 14:13:20 2016 +0100 @@ -358,15 +358,15 @@ throw new UnsupportedOperationException("valuesObject() method not implemented"); } - /** Assert two double values are the same. Various languages may have different - * semantics with respect to double numbers. Some of the language may not - * support double or float values at all. Those languages - * may override this method and compare the values with as much precision - * as they like. + /** + * Assert two double values are the same. Various languages may have different semantics with + * respect to double numbers. Some of the language may not support double or float + * values at all. Those languages may override this method and compare the values with as much + * precision as they like. *

* Default implementation of this method calls - * {@link Assert#assertEquals(java.lang.String, double, double, double)} - * with delta 0.1. + * {@link Assert#assertEquals(java.lang.String, double, double, double)} with delta + * 0.1. * * @param msg assertion message to display in case of error * @param expectedValue the value expected by the test @@ -556,7 +556,7 @@ Number n = plus.execute(a, b).as(Number.class); assertDouble("Correct value computed: (" + a + " + " + b + ")", a + b, n.floatValue()); - } + } @Test public void testPlusWithDouble() throws Exception {