Commit 4cdc6839 authored by Dominik Charousset's avatar Dominik Charousset

Make test coordinator fixture ctor more readable

parent 84b76bdf
...@@ -488,7 +488,7 @@ struct test_coordinator_fixture { ...@@ -488,7 +488,7 @@ struct test_coordinator_fixture {
scheduler_type& sched; scheduler_type& sched;
test_coordinator_fixture() test_coordinator_fixture()
: sys((cfg.scheduler_policy = caf::atom("testing"), cfg)), : sys(cfg.set("scheduler.policy", caf::atom("testing"))),
self(sys), self(sys),
sched(dynamic_cast<scheduler_type&>(sys.scheduler())) { sched(dynamic_cast<scheduler_type&>(sys.scheduler())) {
//sys.await_actors_before_shutdown(false); //sys.await_actors_before_shutdown(false);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment