File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -113,16 +113,14 @@ mod tests {
113113
114114 #[ tokio:: test]
115115 async fn test_backend_creation ( ) {
116- let ( _service, _socket) =
117- tower_lsp:: LspService :: build ( |client| Backend :: new ( client) ) . finish ( ) ;
116+ let ( _service, _socket) = tower_lsp:: LspService :: build ( Backend :: new) . finish ( ) ;
118117 // Backend should be created successfully
119118 // This is a minimal smoke test
120119 }
121120
122121 #[ tokio:: test]
123122 async fn test_initialize_without_options ( ) {
124- let ( _service, _socket) =
125- tower_lsp:: LspService :: build ( |client| Backend :: new ( client) ) . finish ( ) ;
123+ let ( _service, _socket) = tower_lsp:: LspService :: build ( Backend :: new) . finish ( ) ;
126124 // Should initialize successfully with default config
127125 // Integration tests will test actual LSP protocol
128126 }
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ allow = [
1818 " Unicode-DFS-2016" ,
1919 " Zlib" ,
2020 " 0BSD" ,
21+ " CDLA-Permissive-2.0" ,
2122]
2223
2324[[licenses .clarify ]]
You can’t perform that action at this time.
0 commit comments