From 80a02f96ce10487a8886ebc00b38cb72b671c0ca Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Fri, 22 Sep 2023 13:03:30 +0300 Subject: chore(tvix/castore): remove dependency on anyhow We don't use this here, except in a test, where we don't really use it either. Change-Id: Ia6c45fccf663fe328942b1e1a2cd1c3a1b7f9ae5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9376 Autosubmit: flokli Reviewed-by: Connor Brewster Tested-by: BuildkiteCI --- tvix/castore/src/directoryservice/grpc.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tvix/castore/src/directoryservice') diff --git a/tvix/castore/src/directoryservice/grpc.rs b/tvix/castore/src/directoryservice/grpc.rs index 0f0305341265..febab2752a1f 100644 --- a/tvix/castore/src/directoryservice/grpc.rs +++ b/tvix/castore/src/directoryservice/grpc.rs @@ -355,7 +355,7 @@ mod tests { }; #[test] - fn test() -> anyhow::Result<()> { + fn test() { let tmpdir = TempDir::new().unwrap(); let socket_path = tmpdir.path().join("socket"); @@ -535,7 +535,5 @@ mod tests { .expect_err("must fail"); } }); - - Ok(()) } } -- cgit 1.4.1