Skip to content

Commit ea8f0e4

Browse files
committed
tests: update rustdoc test for renamed assert_recursive_eq
1 parent b4c5349 commit ea8f0e4

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_wrapper::copy;
22
use std::path::{Path, PathBuf};
33

4-
use run_make_support::{copy_dir_all, recursive_diff, rustdoc};
4+
use run_make_support::{assert_recursive_eq, copy_dir_all, 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-
recursive_diff(&out_dir, &tmp_out_dir);
48+
assert_recursive_eq(&out_dir, &tmp_out_dir);
4949
}

0 commit comments

Comments
 (0)