mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-31 13:54:27 +01:00
Fix: incorrect assert in fuzz
This commit is contained in:
@@ -195,7 +195,7 @@ fn do_fuzz(expr: Expr) -> Result<Corpus, Box<dyn Error>> {
|
||||
StepResult::IO => io.run_once()?,
|
||||
StepResult::Row => {
|
||||
let row = stmt.row().unwrap();
|
||||
assert_eq!(row.count(), 1, "expr: {:?}", expr);
|
||||
assert_eq!(row.len(), 1, "expr: {:?}", expr);
|
||||
break 'value row.get_value(0).clone();
|
||||
}
|
||||
_ => unreachable!(),
|
||||
|
||||
Reference in New Issue
Block a user