Skip to content

Commit c715675

Browse files
fixed checkstyle violation in NearestElementTest.java
1 parent 0ed6d3b commit c715675

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/stacks/NearestElementTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ void testNearestSmallerToLeft() {
4848

4949
@Test
5050
void testPrivateConstructor() throws Exception {
51-
Constructor<NearestElement> constructor
52-
= NearestElement.class.getDeclaredConstructor();
51+
Constructor<NearestElement> constructor =
52+
NearestElement.class.getDeclaredConstructor();
5353
constructor.setAccessible(true);
5454
try {
5555
constructor.newInstance();

0 commit comments

Comments
 (0)