Fix regression. skip-until 'skips' until condition is met.

This commit is contained in:
Andrés N. Robalino
2020-06-17 13:36:50 -05:00
parent 94aac0e8dd
commit 96d58094cf
2 changed files with 15 additions and 15 deletions

View File

@ -100,8 +100,8 @@ impl WholeStreamCommand for SkipUntil {
trace!("RESULT = {:?}", result);
match result {
Ok(ref v) if v.is_true() => true,
_ => false,
Ok(ref v) if v.is_true() => false, // stop skipping
_ => true,
}
}
})