todos: reopen an acked keyed row when the caller says so
This commit is contained in:
parent
d5782965db
commit
1b72ed56ff
12 changed files with 158 additions and 45 deletions
|
|
@ -136,7 +136,7 @@ mod tests {
|
|||
{
|
||||
let store = Todos::open(&legacy_todos).unwrap();
|
||||
store
|
||||
.upsert("matrix", Some("!a:x"), "1 unread", None)
|
||||
.upsert("matrix", Some("!a:x"), "1 unread", None, false)
|
||||
.unwrap();
|
||||
}
|
||||
run(
|
||||
|
|
@ -184,7 +184,7 @@ mod tests {
|
|||
{
|
||||
Todos::open(&legacy_todos)
|
||||
.unwrap()
|
||||
.upsert("bash", None, "task done", None)
|
||||
.upsert("bash", None, "task done", None, false)
|
||||
.unwrap();
|
||||
Reminders::open(&legacy_reminders)
|
||||
.unwrap()
|
||||
|
|
|
|||
Loading…
Reference in a new issue