Skip to content

Commit 68fe694

Browse files
author
alxkm
committed
fix: static import
1 parent 15797b6 commit 68fe694

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
package com.thealgorithms.conversions;
22

3-
import static org.junit.jupiter.api.Assertions.assertEquals;
4-
3+
import org.junit.jupiter.api.Assertions;
54
import org.junit.jupiter.api.Test;
65

76
public class OctalToHexadecimalTest {
87

98
@Test
109
public void testOctalToHexadecimal() {
11-
assertEquals("1EA", OctalToHexadecimal.decimalToHex(OctalToHexadecimal.octToDec("752")));
12-
assertEquals("15E", OctalToHexadecimal.decimalToHex(OctalToHexadecimal.octToDec("536")));
10+
Assertions.assertEquals("1EA", OctalToHexadecimal.decimalToHex(OctalToHexadecimal.octToDec("752")));
11+
Assertions.assertEquals("15E", OctalToHexadecimal.decimalToHex(OctalToHexadecimal.octToDec("536")));
1312
}
1413
}

0 commit comments

Comments
 (0)