Commit d9d35596 authored by Willem Thiart's avatar Willem Thiart
Browse files

Fix test failure caused by #54

parent 2f5cba92
......@@ -3070,10 +3070,6 @@ void TestRaft_leader_recv_appendentries_response_do_not_increase_commit_idx_beca
raft_recv_appendentries_response(r, raft_get_node(r, 3), &aer);
CuAssertIntEquals(tc, 3, raft_get_commit_idx(r));
raft_periodic(r, 1);
CuAssertIntEquals(tc, 1, raft_get_last_applied_idx(r));
raft_periodic(r, 1);
CuAssertIntEquals(tc, 2, raft_get_last_applied_idx(r));
raft_periodic(r, 1);
CuAssertIntEquals(tc, 3, raft_get_last_applied_idx(r));
}
......
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