We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
assert_dirs_are_equal
1 parent 30bdc4a commit a00b860Copy full SHA for a00b860
tests/run-make/rustdoc-verify-output-files/rmake.rs
@@ -1,7 +1,7 @@
1
use run_make_support::fs as rfs;
2
use std::path::{Path, PathBuf};
3
4
-use run_make_support::{assert_recursive_eq, rustdoc};
+use run_make_support::{assert_dirs_are_equal, 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
- assert_recursive_eq(&out_dir, &tmp_out_dir);
+ assert_dirs_are_equal(&out_dir, &tmp_out_dir);
49
}
0 commit comments