From 35aa4d9048dcfe567670147010a14669a777f5e5 Mon Sep 17 00:00:00 2001 From: Danil Platonov Date: Sun, 12 Apr 2026 19:32:40 -0700 Subject: [PATCH] cargo fmt --- tests/scryer/helper.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/scryer/helper.rs b/tests/scryer/helper.rs index 42be0e9a..91fe9880 100644 --- a/tests/scryer/helper.rs +++ b/tests/scryer/helper.rs @@ -56,7 +56,7 @@ pub(crate) fn load_module_test_with_tokio_runtime(file: &str, exp pub(crate) fn load_module_test_with_tokio_runtime_and_input( file: &str, input: impl Into>, - expected: T + expected: T, ) { let runtime = tokio::runtime::Builder::new_multi_thread() .enable_all() @@ -65,7 +65,9 @@ pub(crate) fn load_module_test_with_tokio_runtime_and_input( runtime.block_on(async move { let mut wam = MachineBuilder::default() - .with_streams(StreamConfig::in_memory().with_user_input(InputStreamConfig::string(input))) + .with_streams( + StreamConfig::in_memory().with_user_input(InputStreamConfig::string(input)), + ) .build(); expected.assert_eq(wam.test_load_file(file).as_slice()) }); -- 2.54.0