diff --git a/src/runtime2/tests/mod.rs b/src/runtime2/tests/mod.rs index 7bdc1ce2771d8f70da978ac0ad6a834e5a414e6b..ce820c8a0167bf00581b238e07141be8c6703995 100644 --- a/src/runtime2/tests/mod.rs +++ b/src/runtime2/tests/mod.rs @@ -23,7 +23,7 @@ fn test_component_creation() { auto b = 5 + a; } ").expect("compilation"); - let rt = Runtime::new(1, pd); + let rt = Runtime::new(1, true, pd); for i in 0..20 { create_component(&rt, "", "nothing_at_all", no_args()); @@ -80,6 +80,6 @@ fn test_component_communication() { new sender(o_mrmm, 5, 5); new receiver(i_mrmm, 5, 5); }").expect("compilation"); - let rt = Runtime::new(3, pd); + let rt = Runtime::new(3, true, pd); create_component(&rt, "", "constructor", no_args()); } \ No newline at end of file