mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-23 00:45:37 +01:00
core: Rename IO::run_once() to IO::step()
The `run_once()` name is just a historical accident. Furthermore, it now started to appear elsewhere as well, so let's just call it IO::step() as we should have from the beginning.
This commit is contained in:
@@ -317,7 +317,7 @@ fn test_wal_restart() -> anyhow::Result<()> {
|
||||
let insert_query = format!("INSERT INTO test VALUES ({i})");
|
||||
run_query(tmp_db, conn, &insert_query)?;
|
||||
debug!("inserted {i}");
|
||||
tmp_db.io.run_once()?;
|
||||
tmp_db.io.step()?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user