Skip to content

Commit f85080d

Browse files
committed
fix tests
1 parent b019ffb commit f85080d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/cli/args.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,14 @@ mod tests {
171171
// This is usually replaced in assertion tests
172172
password: None,
173173
threads: None,
174-
disable_sandbox: true,
174+
disable_sandbox: false,
175175
cmd: Subcommand::Decompress {
176176
// Put a crazy value here so no test can assert it unintentionally
177177
files: vec!["\x00\x11\x22".into()],
178178
output_dir: None,
179179
remove: false,
180180
no_smart_unpack: false,
181-
disable_sandbox: true,
181+
disable_sandbox: false,
182182
},
183183
}
184184
}
@@ -193,7 +193,7 @@ mod tests {
193193
output_dir: None,
194194
remove: false,
195195
no_smart_unpack: false,
196-
disable_sandbox: true,
196+
disable_sandbox: false,
197197
},
198198
..mock_cli_args()
199199
}
@@ -206,7 +206,7 @@ mod tests {
206206
output_dir: None,
207207
remove: false,
208208
no_smart_unpack: false,
209-
disable_sandbox: true,
209+
disable_sandbox: false,
210210
},
211211
..mock_cli_args()
212212
}
@@ -219,7 +219,7 @@ mod tests {
219219
output_dir: None,
220220
remove: false,
221221
no_smart_unpack: false,
222-
disable_sandbox: true,
222+
disable_sandbox: false,
223223
},
224224
..mock_cli_args()
225225
}
@@ -235,7 +235,7 @@ mod tests {
235235
fast: false,
236236
slow: false,
237237
follow_symlinks: false,
238-
disable_sandbox: true,
238+
disable_sandbox: false,
239239
},
240240
..mock_cli_args()
241241
}
@@ -250,7 +250,7 @@ mod tests {
250250
fast: false,
251251
slow: false,
252252
follow_symlinks: false,
253-
disable_sandbox: true,
253+
disable_sandbox: false,
254254
},
255255
..mock_cli_args()
256256
}
@@ -265,7 +265,7 @@ mod tests {
265265
fast: false,
266266
slow: false,
267267
follow_symlinks: false,
268-
disable_sandbox: true,
268+
disable_sandbox: false,
269269
},
270270
..mock_cli_args()
271271
}
@@ -291,7 +291,7 @@ mod tests {
291291
fast: false,
292292
slow: false,
293293
follow_symlinks: false,
294-
disable_sandbox: true,
294+
disable_sandbox: false,
295295
},
296296
format: Some("tar.gz".into()),
297297
..mock_cli_args()

0 commit comments

Comments
 (0)