about summary refs log tree commit diff
diff options
context:
space:
mode:
author许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com>2024-07-15 12:15:36 +0000
committer许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com>2024-07-17 12:48:22 +0000
commit56cbfa8749d18fedc0133b2f501b8d5678e89ce9 (patch)
tree1409f7d5c19cc46173a9a716bc057117629a62a4
parent230804dc3a92c640935f34f16325b0c0e93b9ec3 (diff)
downloadrust-56cbfa8749d18fedc0133b2f501b8d5678e89ce9.tar.gz
rust-56cbfa8749d18fedc0133b2f501b8d5678e89ce9.zip
tests: update rustdoc test for renamed `assert_recursive_eq`
-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 1bf41c68114..61dd97e09a9 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_wrapper::copy;
 use std::path::{Path, PathBuf};
 
-use run_make_support::{copy_dir_all, recursive_diff, rustdoc};
+use run_make_support::{assert_recursive_eq, copy_dir_all, 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.
-    recursive_diff(&out_dir, &tmp_out_dir);
+    assert_recursive_eq(&out_dir, &tmp_out_dir);
 }