From 2db0717141a94714ed72def10a7765fc58e380a5 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 23 Mar 2025 18:40:44 -0400 Subject: [PATCH] Fix EXD test --- src/exd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exd.rs b/src/exd.rs index 5ce41b3..456afeb 100644 --- a/src/exd.rs +++ b/src/exd.rs @@ -241,6 +241,6 @@ mod tests { }; // Feeding it invalid data should not panic - EXD::from_existing(&exh, &read(d).unwrap()); + EXD::from_existing(&read(d).unwrap()); } }