We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
assert_recursive_eq
1 parent b4c5349 commit ea8f0e4Copy full SHA for ea8f0e4
tests/run-make/rustdoc-verify-output-files/rmake.rs
@@ -1,7 +1,7 @@
1
use run_make_support::fs_wrapper::copy;
2
use std::path::{Path, PathBuf};
3
4
-use run_make_support::{copy_dir_all, recursive_diff, rustdoc};
+use run_make_support::{assert_recursive_eq, copy_dir_all, rustdoc};
5
6
#[derive(PartialEq)]
7
enum JsonOutput {
@@ -45,5 +45,5 @@ fn main() {
45
46
// Check if all docs(including both json and html formats) are still the same after multiple
47
// compilations.
48
- recursive_diff(&out_dir, &tmp_out_dir);
+ assert_recursive_eq(&out_dir, &tmp_out_dir);
49
}
0 commit comments