Skip to content

Commit e6728c0

Browse files
committed
Fix
1 parent a28c364 commit e6728c0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/test/java/com/thealgorithms/maths/EulerMethodTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ public void testEulerFullNegativeStepSize() {
7373
public void testEulerFullSingleStep() {
7474
BiFunction<Double, Double, Double> equation = (x, y) -> x + y;
7575
ArrayList<double[]> result = EulerMethod.eulerFull(0, 0.1, 0.1, 1, equation);
76-
7776
assertEquals(2, result.size(), "Incorrect number of points for single step.");
7877
assertArrayEquals(new double[] {0.0, 1.0}, result.get(0), 1e-9, "Incorrect first point.");
7978
assertArrayEquals(new double[] {0.1, 1.1}, result.get(1), 1e-9, "Incorrect second point.");

0 commit comments

Comments
 (0)