From d647b28bb8c77173d6ffab501cda5e1cdd0ca125 Mon Sep 17 00:00:00 2001 From: bin Date: Sat, 5 Mar 2022 10:28:52 +0800 Subject: [PATCH] agent: delete meaningless FIXME comment The test has passed, the FIX comment should be deleted. Fixes: #3835 Signed-off-by: bin --- src/agent/src/sandbox.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/agent/src/sandbox.rs b/src/agent/src/sandbox.rs index 3edbe7ea02..f1f60fbb91 100644 --- a/src/agent/src/sandbox.rs +++ b/src/agent/src/sandbox.rs @@ -551,7 +551,7 @@ mod tests { assert!( s.remove_sandbox_storage(srcdir_path).is_err(), - "Expect Err as the directory i not a mountpoint" + "Expect Err as the directory is not a mountpoint" ); assert!(s.remove_sandbox_storage("").is_err()); @@ -586,7 +586,6 @@ mod tests { let logger = slog::Logger::root(slog::Discard, o!()); let mut s = Sandbox::new(&logger).unwrap(); - // FIX: This test fails, not sure why yet. assert!( s.unset_and_remove_sandbox_storage("/tmp/testEphePath") .is_err(),