Skip to content

Commit

Permalink
HDFS-17546. Follow-up backport from branch3.3 (#6908)
Browse files Browse the repository at this point in the history
HDFS-17546. Follow-up backport from branch3.3
  • Loading branch information
NyteKnight authored Aug 21, 2024
1 parent 68fcd72 commit f6c45e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import org.mockito.Mock;
import org.mockito.Mockito;

import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.when;
import org.mockito.MockitoAnnotations;

/**
* Test for JSON based HostsFileReader.
Expand All @@ -56,7 +56,7 @@ public class TestCombinedHostsFileReader {

@Before
public void setUp() throws Exception {
callable = Mockito.mock(Callable.class);
MockitoAnnotations.initMocks(this);
}

@After
Expand Down

0 comments on commit f6c45e0

Please sign in to comment.