Skip to content

Commit

Permalink
Remove redundant setUp
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrrr committed Jan 19, 2022
1 parent 7089366 commit ca65916
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,11 @@
import static org.junit.Assert.assertNull;

import io.confluent.ksql.function.KsqlFunctionException;
import org.junit.Before;
import org.junit.Test;

public class JsonArrayLengthTest {

private JsonArrayLength udf;

@Before
public void setUp() {
udf = new JsonArrayLength();
}
private static final JsonArrayLength udf = new JsonArrayLength();

@Test
public void shouldReturnFlatArrayLength() {
Expand Down

0 comments on commit ca65916

Please sign in to comment.