File tree Expand file tree Collapse file tree
graph/src/components/network_provider Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -185,8 +185,8 @@ mod tests {
185185 update_identifier_calls,
186186 } = self ;
187187
188- assert ! ( validate_identifier_calls. lock ( ) . unwrap( ) . is_empty( ) ) ;
189- assert ! ( update_identifier_calls. lock ( ) . unwrap( ) . is_empty( ) ) ;
188+ assert ! ( validate_identifier_calls. get_mut ( ) . unwrap( ) . is_empty( ) ) ;
189+ assert ! ( update_identifier_calls. get_mut ( ) . unwrap( ) . is_empty( ) ) ;
190190 }
191191 }
192192
@@ -226,7 +226,7 @@ mod tests {
226226 chain_identifier_calls,
227227 } = self ;
228228
229- assert ! ( chain_identifier_calls. lock ( ) . unwrap( ) . is_empty( ) ) ;
229+ assert ! ( chain_identifier_calls. get_mut ( ) . unwrap( ) . is_empty( ) ) ;
230230 }
231231 }
232232
Original file line number Diff line number Diff line change @@ -428,7 +428,7 @@ mod tests {
428428 provider_name_calls,
429429 } = self ;
430430
431- assert ! ( provider_name_calls. lock ( ) . unwrap( ) . is_empty( ) ) ;
431+ assert ! ( provider_name_calls. get_mut ( ) . unwrap( ) . is_empty( ) ) ;
432432 }
433433 }
434434
You can’t perform that action at this time.
0 commit comments