From ea8dcb54d0424b672ff35fc3e5e0494bd4c2787e Mon Sep 17 00:00:00 2001 From: Ming-Hung Tsai Date: Tue, 31 Aug 2021 00:35:48 +0800 Subject: [PATCH] [tests] Fix the file size for testing --- tests/common/output_option.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/output_option.rs b/tests/common/output_option.rs index 57028f1..5a627c4 100644 --- a/tests/common/output_option.rs +++ b/tests/common/output_option.rs @@ -81,7 +81,7 @@ where let input = P::mk_valid_input(&mut td)?; let output = td.mk_path("meta.bin"); - let _file = file_utils::create_sized_file(&output, 4096); + let _file = file_utils::create_sized_file(&output, 4_194_304); duct::cmd!("chmod", "-w", &output).run()?; let stderr = run_fail(P::path(), args!["-i", &input, "-o", &output])?;