about summary refs log tree commit diff
diff options
context:
space:
mode:
author许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com>2024-07-17 13:02:34 +0000
committer许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com>2024-07-17 13:32:29 +0000
commita00b860bfcf552d0c09e56edd0bcb377b6b532b3 (patch)
tree68c3d70ce477c153b251b1eb202841c67ef75b8e
parent30bdc4a30994beb338f9ab6589fd992082b3f0af (diff)
downloadrust-a00b860bfcf552d0c09e56edd0bcb377b6b532b3.tar.gz
rust-a00b860bfcf552d0c09e56edd0bcb377b6b532b3.zip
tests: update rustdoc test for renamed `assert_dirs_are_equal`
-rw-r--r--tests/run-make/rustdoc-verify-output-files/rmake.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-make/rustdoc-verify-output-files/rmake.rs b/tests/run-make/rustdoc-verify-output-files/rmake.rs
index efcc47079bd..940503bf85f 100644
--- a/tests/run-make/rustdoc-verify-output-files/rmake.rs
+++ b/tests/run-make/rustdoc-verify-output-files/rmake.rs
@@ -1,7 +1,7 @@
 use run_make_support::fs as rfs;
 use std::path::{Path, PathBuf};
 
-use run_make_support::{assert_recursive_eq, rustdoc};
+use run_make_support::{assert_dirs_are_equal, rustdoc};
 
 #[derive(PartialEq)]
 enum JsonOutput {
@@ -45,5 +45,5 @@ fn main() {
 
     // Check if all docs(including both json and html formats) are still the same after multiple
     // compilations.
-    assert_recursive_eq(&out_dir, &tmp_out_dir);
+    assert_dirs_are_equal(&out_dir, &tmp_out_dir);
 }