File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
engine/language-server/src/test/scala/org/enso/languageserver/websocket/binary Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import java.nio.ByteBuffer
33import java .nio .file .Files
44import java .util .UUID
55import akka .actor .{ActorRef , Props }
6- import akka .http .scaladsl .model .RemoteAddress
76import com .google .flatbuffers .FlatBufferBuilder
87import org .apache .commons .io .FileUtils
98import org .enso .runner .common .ProfilingConfig
@@ -76,7 +75,7 @@ abstract class BaseBinaryServerTest extends BinaryServerTestKit {
7675 }
7776
7877 override def connectionControllerFactory : ConnectionControllerFactory = {
79- (clientIp : RemoteAddress . IP ) =>
78+ () =>
8079 {
8180 val testExecutor = ExecutionContext .fromExecutor(threadPool)
8281 val zioRuntime = new ExecutionContextRuntime (testExecutor)
@@ -100,7 +99,7 @@ abstract class BaseBinaryServerTest extends BinaryServerTestKit {
10099
101100 val controller =
102101 system.actorOf(
103- Props (new BinaryConnectionController (clientIp, fileManager))
102+ Props (new BinaryConnectionController (fileManager))
104103 )
105104 lastConnectionController = controller
106105 controller
You can’t perform that action at this time.
0 commit comments