Skip to content

Commit

Permalink
[ZEPPELIN-6131] Refactor dependencies initialization to use an empty …
Browse files Browse the repository at this point in the history
…list
  • Loading branch information
ParkGyeongTae committed Nov 11, 2024
1 parent 9b2d019 commit 2e81118
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
Expand All @@ -48,7 +49,7 @@ class UpdateInterpreterSettingRequestTest {
@BeforeEach
void setUp() {
properties = new HashMap<>();
dependencies = mock(List.class);
dependencies = Collections.emptyList();
option = mock(InterpreterOption.class);
request = new UpdateInterpreterSettingRequest(properties, dependencies, option);
}
Expand Down

0 comments on commit 2e81118

Please sign in to comment.