From 348611f62b460d219855f6392d3d13df0cc28d1d Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 13 Jun 2024 23:54:01 -0700 Subject: [PATCH] test: Fix a bug --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index be82b444..b0b38627 100644 --- a/src/write.rs +++ b/src/write.rs @@ -2655,7 +2655,7 @@ mod test { writer }; writer.merge_archive(sub_writer.finish_into_readable()?)?; - writer.deep_copy_file_from_path("", "")?; + writer.deep_copy_file_from_path("", "_copy")?; let _ = writer.finish_into_readable()?; Ok(()) }