mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 13:23:09 +00:00
Fix rust formatting for BSD signal tests
This commit is contained in:
parent
6a3ece6766
commit
cb368f70ee
1 changed files with 4 additions and 1 deletions
|
@ -617,5 +617,8 @@ add_test!("test_signal_parse", || {
|
|||
/// rust's native OS targeting for those.
|
||||
fn bsd_signals() {
|
||||
assert_eq!(Signal::parse(L!("SIGEMT")), Some(Signal::new(libc::SIGEMT)));
|
||||
assert_eq!(Signal::parse(L!("SIGINFO")), Some(Signal::new(libc::SIGINFO)));
|
||||
assert_eq!(
|
||||
Signal::parse(L!("SIGINFO")),
|
||||
Some(Signal::new(libc::SIGINFO))
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue