Skip to content

Commit

Permalink
fmt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
xunilrj committed Jan 10, 2024
1 parent 38ad6fb commit b1ee16b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion forc-plugins/forc-doc/src/tests/expects/impl_trait/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ fn assert_file_tree(doc_dir_name: &str, project_name: &str, expected_files: Vec<
let files = get_relative_file_paths_set(doc_root.clone());
if files != expected {
let diffs = files.symmetric_difference(&expected);
assert_eq!(files, expected, "Symmetric Difference: {diffs:?} at {doc_root:?}");
assert_eq!(
files, expected,
"Symmetric Difference: {diffs:?} at {doc_root:?}"
);
}
}

0 comments on commit b1ee16b

Please sign in to comment.