From 5e76689f49a600e198cebbc7e0be802899bc6ec8 Mon Sep 17 00:00:00 2001 From: Ryan Levick Date: Tue, 16 Jun 2020 18:54:42 +0200 Subject: [PATCH] Don't run doc test since it will panic --- src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index 8155c810..52fe75cf 100644 --- a/src/read.rs +++ b/src/read.rs @@ -188,7 +188,7 @@ impl ZipArchive { /// Number of files contained in this zip. /// - /// ``` + /// ```no_run /// let mut zip = zip::ZipArchive::new(std::io::Cursor::new(vec![])).unwrap(); /// /// for i in 0..zip.len() {