From 668a31cb96ca585a555876ed1322fb62b29583ca Mon Sep 17 00:00:00 2001 From: Luis <59798214+CreepyPvP@users.noreply.github.com> Date: Wed, 17 May 2023 06:21:19 +0200 Subject: [PATCH] Fixed typo (#1928) Signed-off-by: Luis Dietl --- tests/rust-integration-tests/runtimetest/src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rust-integration-tests/runtimetest/src/utils.rs b/tests/rust-integration-tests/runtimetest/src/utils.rs index 25ae85a1..863b57b3 100644 --- a/tests/rust-integration-tests/runtimetest/src/utils.rs +++ b/tests/rust-integration-tests/runtimetest/src/utils.rs @@ -299,7 +299,7 @@ pub fn test_mount_noreleatime_option(path: &str) -> Result<(), std::io::Error> { // Do not update access times for (all types of) files on this mount. // case: // 1. touch rnoatime.txt file, get atime -// 2. caat rnoatime.txt, check atime wheather update, if update return error, else return Ok +// 2. cat rnoatime.txt, check atime wheather update, if update return error, else return Ok pub fn test_mount_rnoatime_option(path: &str) -> Result<(), std::io::Error> { let test_file_path = PathBuf::from(path).join("rnoatime.txt"); Command::new("touch")