Improve randomized test assertion message when diff base is wrong
This commit is contained in:
parent
25e3c4e586
commit
abfbba68f0
1 changed files with 5 additions and 1 deletions
|
@ -973,7 +973,11 @@ fn check_consistency_between_clients(clients: &[(Rc<TestClient>, TestAppContext)
|
||||||
host_buffer.read_with(host_cx, |b, _| b.diff_base().map(ToString::to_string));
|
host_buffer.read_with(host_cx, |b, _| b.diff_base().map(ToString::to_string));
|
||||||
let guest_diff_base = guest_buffer
|
let guest_diff_base = guest_buffer
|
||||||
.read_with(client_cx, |b, _| b.diff_base().map(ToString::to_string));
|
.read_with(client_cx, |b, _| b.diff_base().map(ToString::to_string));
|
||||||
assert_eq!(guest_diff_base, host_diff_base);
|
assert_eq!(
|
||||||
|
guest_diff_base, host_diff_base,
|
||||||
|
"guest {} diff base does not match host's for path {path:?} in project {project_id}",
|
||||||
|
client.username
|
||||||
|
);
|
||||||
|
|
||||||
let host_saved_version =
|
let host_saved_version =
|
||||||
host_buffer.read_with(host_cx, |b, _| b.saved_version().clone());
|
host_buffer.read_with(host_cx, |b, _| b.saved_version().clone());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue