Skip to content

Commit 7bca717

Browse files
authored
Update NevilleTest.java
1 parent f38c321 commit 7bca717

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ public void testEmptyArrays() {
5858
double target = 1;
5959
assertThrows(IllegalArgumentException.class, () -> Neville.interpolate(x, y, target));
6060
}
61-
61+
6262
@Test
63-
public void testDuplicateXCoordinatesThrowsException() {
63+
public void testDuplicateXCoordinates() {
6464
double[] x = {1, 2, 1};
6565
double[] y = {5, 8, 3};
6666
double target = 1.5;

0 commit comments

Comments
 (0)