From d26abaa297b62f49b44ad07fc5fd601bd0e49058 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 29 Apr 2023 15:42:26 -0700 Subject: [PATCH] Fix Clippy warning --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 62d763c4..caac7a52 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1644,7 +1644,7 @@ mod test { .start_file("foo/bar/test", FileOptions::default()) .unwrap(); writer - .write("The quick brown 🦊 jumps over the lazy 🐕".as_bytes()) + .write_all("The quick brown 🦊 jumps over the lazy 🐕".as_bytes()) .unwrap(); writer .start_file("foo/bar/test", FileOptions::default())