Skip to content

Commit 3f427f8

Browse files
authored
Update EMAFilterTest.java
Remove trailing spaces
1 parent 5062c1f commit 3f427f8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/test/java/com/thealgorithms/audiofilters/EMAFilterTest.java

-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,9 @@ public void testAlphaBounds() {
3636

3737
// Minimal smoothing (alpha close to 0)
3838
double[] resultMin = emaFilterMin.apply(audioSignal);
39-
4039
assertArrayEquals(audioSignal, resultMin, 1e-5);
41-
4240
// Maximum smoothing (alpha = 1, output should match input)
4341
double[] resultMax = emaFilterMax.apply(audioSignal);
44-
4542
assertArrayEquals(audioSignal, resultMax, 1e-5);
4643
}
4744
}

0 commit comments

Comments
 (0)