forked from extern/nushell
Fix the versions up a bit to prevent breakage (#1602)
* Fix the versions up a bit to prevent breakage * fix up the quickcheck test to not fail on parse error
This commit is contained in:
@ -871,9 +871,8 @@ mod tests {
|
||||
fn quickcheck_parse(data: String) -> bool {
|
||||
if let Ok(lite_pipeline) = nu_parser::lite_parse(&data, 0) {
|
||||
let context = crate::context::Context::basic().unwrap();
|
||||
nu_parser::classify_pipeline(&lite_pipeline, context.registry())
|
||||
.failed
|
||||
.is_none()
|
||||
let _ = nu_parser::classify_pipeline(&lite_pipeline, context.registry());
|
||||
true
|
||||
} else {
|
||||
false
|
||||
}
|
||||
|
Reference in New Issue
Block a user