Skip to content

Commit 2bf94c4

Browse files
committed
Fix lightning-background-processor.
1 parent 86e4cd9 commit 2bf94c4

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
@@ -1944,7 +1944,7 @@ mod tests {
19441944
match bp_future.await {
19451945
Ok(_) => panic!("Expected error persisting manager"),
19461946
Err(e) => {
1947-
assert_eq!(e.kind(), std::io::ErrorKind::Other);
1947+
assert_eq!(e.kind(), lightning::io::ErrorKind::Other);
19481948
assert_eq!(e.get_ref().unwrap().to_string(), "test");
19491949
},
19501950
}

0 commit comments

Comments
 (0)