Skip to content

Commit e623c9b

Browse files
committed
tests clang linted
1 parent 516e464 commit e623c9b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/com/thealgorithms/greedyalgorithms/BinaryAdditionTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.thealgorithms.greedyalgorithms;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
45
import org.junit.jupiter.api.Test;
56

67
public class BinaryAdditionTest {
@@ -39,7 +40,6 @@ public void testAllZeros() {
3940
assertEquals(expected, binaryAddition.addBinary(a, b));
4041
}
4142

42-
4343
@Test
4444
public void testAllOnes() {
4545
String a = "1111";
@@ -94,4 +94,3 @@ public void testAlternatingBits() {
9494
assertEquals(expected, binaryAddition.addBinary(a, b));
9595
}
9696
}
97-

0 commit comments

Comments
 (0)