remove TDB2::commit call from tests

This commit is contained in:
Dustin J. Mitchell 2023-05-07 17:30:54 +00:00 committed by Dustin J. Mitchell
parent 3b4113c61a
commit 02de8dfe67

View file

@ -100,13 +100,10 @@ int main (int, char**)
t.is ((int) num_reverts_possible, 7, "TDB2 after add, 7 undo lines"); t.is ((int) num_reverts_possible, 7, "TDB2 after add, 7 undo lines");
t.is ((int) num_local_changes, 2, "TDB2 after add, 2 backlog task"); t.is ((int) num_local_changes, 2, "TDB2 after add, 2 backlog task");
context.tdb2.commit ();
// Reset for reuse. // Reset for reuse.
cleardb (); cleardb ();
context.tdb2.open_replica (".", true); context.tdb2.open_replica (".", true);
// TODO commit
// TODO complete a task // TODO complete a task
// TODO gc // TODO gc
} }