File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ mod tests {
179179 "SAAPN4W3EG6KCJGUQTKTJ5!#B5NHK5CHAJL4DBGFUM3HHROI4XUEP4OBK4"
180180 ) ,
181181 Err ( KeyPairFromSeedError :: InvalidBase32 )
182- )
182+ ) ;
183183 }
184184
185185 #[ test]
@@ -189,7 +189,7 @@ mod tests {
189189 "FAAPN4W3EG6KCJGUQTKTJ5GSB5NHK5CHAJL4DBGFUM3HHROI4XUEP4OBK4"
190190 ) ,
191191 Err ( KeyPairFromSeedError :: BadCrc )
192- )
192+ ) ;
193193 }
194194
195195 #[ test]
@@ -199,6 +199,6 @@ mod tests {
199199 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
200200 ) ,
201201 Err ( KeyPairFromSeedError :: InvalidPrefix )
202- )
202+ ) ;
203203 }
204204}
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ impl Client {
198198 pub ( crate ) fn test ( client_to_handler_chan_size : usize ) -> ( Self , TestHandler ) {
199199 let builder = Self :: builder ( ) ;
200200 let ( sender, receiver) = mpsc:: channel ( client_to_handler_chan_size) ;
201- let ( shutdown_sender, shutdown_receiver ) = mpsc:: channel ( 1 ) ;
201+ let ( shutdown_sender, _shutdown_receiver ) = mpsc:: channel ( 1 ) ;
202202 let info = Arc :: new ( ArcSwap :: new ( Arc :: from ( ServerInfo {
203203 id : "1234" . to_owned ( ) ,
204204 name : "watermelon-test" . to_owned ( ) ,
You can’t perform that action at this time.
0 commit comments