Skip to content

Commit db61c59

Browse files
committed
Fix lightning-background-processor.
1 parent d896adf commit db61c59

File tree

1 file changed

+1
-1
lines changed
  • lightning-background-processor/src

1 file changed

+1
-1
lines changed

lightning-background-processor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2002,7 +2002,7 @@ mod tests {
20022002
match bp_future.await {
20032003
Ok(_) => panic!("Expected error persisting manager"),
20042004
Err(e) => {
2005-
assert_eq!(e.kind(), std::io::ErrorKind::Other);
2005+
assert_eq!(e.kind(), lightning::io::ErrorKind::Other);
20062006
assert_eq!(e.get_ref().unwrap().to_string(), "test");
20072007
},
20082008
}

0 commit comments

Comments
 (0)