Commit 2fcea6ab authored by Dominik Charousset's avatar Dominik Charousset

Fix bug in remote actor test w/ logging enabled

parent 076112c8
...@@ -58,7 +58,8 @@ struct fixture { ...@@ -58,7 +58,8 @@ struct fixture {
behavior make_pong_behavior() { behavior make_pong_behavior() {
return { return {
[](int val) -> int { [](int val) -> int {
CAF_MESSAGE("pong with " << ++val); ++val;
CAF_MESSAGE("pong with " << val);
return val; return val;
} }
}; };
......
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