Skip to content

Commit a00b860

Browse files
committed
tests: update rustdoc test for renamed assert_dirs_are_equal
1 parent 30bdc4a commit a00b860

File tree

1 file changed

+2
-2
lines changed
  • tests/run-make/rustdoc-verify-output-files

1 file changed

+2
-2
lines changed

tests/run-make/rustdoc-verify-output-files/rmake.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use run_make_support::fs as rfs;
22
use std::path::{Path, PathBuf};
33

4-
use run_make_support::{assert_recursive_eq, rustdoc};
4+
use run_make_support::{assert_dirs_are_equal, rustdoc};
55

66
#[derive(PartialEq)]
77
enum JsonOutput {
@@ -45,5 +45,5 @@ fn main() {
4545

4646
// Check if all docs(including both json and html formats) are still the same after multiple
4747
// compilations.
48-
assert_recursive_eq(&out_dir, &tmp_out_dir);
48+
assert_dirs_are_equal(&out_dir, &tmp_out_dir);
4949
}

0 commit comments

Comments
 (0)