From ede39aee7e00c40a43b67ca18dd8ab80ee863d85 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 26 Aug 2025 23:59:38 -0400 Subject: [WARP] Enhanced network support --- plugins/warp/tests/determinism.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/warp/tests/determinism.rs') diff --git a/plugins/warp/tests/determinism.rs b/plugins/warp/tests/determinism.rs index e0568794..5100b436 100644 --- a/plugins/warp/tests/determinism.rs +++ b/plugins/warp/tests/determinism.rs @@ -32,8 +32,8 @@ fn insta_signatures() { .functions() .iter() .map(|f| { - let guid = cached_function_guid(&f, &f.lifted_il().unwrap()); - (f.start(), guid) + let guid = cached_function_guid(&f, || f.lifted_il().ok()); + (f.start(), guid.unwrap()) }) .collect(); insta::assert_debug_snapshot!(file_name, functions); -- cgit v1.3.1