diff --git a/src/runtime2/tests/mod.rs b/src/runtime2/tests/mod.rs index 493bb3c46ee383e5ce2fb327a85bf7eec90af413..b3988d25db7fc32e3077a29ad6b0d4589e2ade98 100644 --- a/src/runtime2/tests/mod.rs +++ b/src/runtime2/tests/mod.rs @@ -14,7 +14,7 @@ const NUM_THREADS: u32 = 1; pub(crate) fn compile_and_create_component(source: &str, routine_name: &str, args: ValueGroup) { let protocol = ProtocolDescription::parse(source.as_bytes()) .expect("successful compilation"); - let runtime = Runtime::new(NUM_THREADS, LOG_LEVEL, protocol) + let runtime = Runtime::new(NUM_THREADS, LogLevel::None, protocol) .expect("successful runtime startup"); create_component(&runtime, "", routine_name, args); }