summaryrefslogtreecommitdiff
path: root/test/sys/test_signalfd.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/sys/test_signalfd.rs')
-rw-r--r--test/sys/test_signalfd.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/sys/test_signalfd.rs b/test/sys/test_signalfd.rs
index a3b60988..92759a48 100644
--- a/test/sys/test_signalfd.rs
+++ b/test/sys/test_signalfd.rs
@@ -1,3 +1,5 @@
+use std::convert::TryFrom;
+
#[test]
fn test_signalfd() {
use nix::sys::signalfd::SignalFd;
@@ -20,6 +22,6 @@ fn test_signalfd() {
// And now catch that same signal.
let res = fd.read_signal().unwrap().unwrap();
- let signo = Signal::from_c_int(res.ssi_signo as i32).unwrap();
+ let signo = Signal::try_from(res.ssi_signo as i32).unwrap();
assert_eq!(signo, signal::SIGUSR1);
}