Commit fc619263 authored by Dominik Charousset's avatar Dominik Charousset

Fix bug in OpenSSL remote actor test

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