Skip to content

Commit 5864ce0

Browse files
committed
f Test panic on windows
1 parent 00937c5 commit 5864ce0

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

lightning-background-processor/src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1300,7 +1300,10 @@ mod tests {
13001300
continue
13011301
}
13021302
},
1303-
Err(_) => continue
1303+
Err(e) => {
1304+
println!("ERROR: {:?}", e);
1305+
panic!("TEST")
1306+
}
13041307
}
13051308
},
13061309
Err(e) => panic!("Unexpected error: {}", e)

0 commit comments

Comments
 (0)