File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ let tests =
3939
4040 let server1 =
4141 async {
42- let result = ( startWithSetup setupEndpoints inputClientPipe1 outputServerPipe1 TestLspClient defaultRpc)
42+ let result =
43+ startWithSetup setupEndpoints inputClientPipe1 outputServerPipe1 ( fun x -> new TestLspClient( x)) defaultRpc
44+
4345 Expect.equal ( int result) 0 " server startup failed"
4446 }
4547
@@ -54,7 +56,9 @@ let tests =
5456
5557 let server2 =
5658 async {
57- let result = ( startWithSetup setupEndpoints inputClientPipe2 outputServerPipe2 TestLspClient defaultRpc)
59+ let result =
60+ ( startWithSetup setupEndpoints inputClientPipe2 outputServerPipe2 ( fun x -> new TestLspClient( x)) defaultRpc)
61+
5862 Expect.equal ( int result) 0 " server startup failed"
5963 }
6064
You can’t perform that action at this time.
0 commit comments