Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronc committed Aug 20, 2024
1 parent 57f17aa commit de5c78a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion schema/appdata/batch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ func TestBatchAsync(t *testing.T) {
}

// commit to synchronize
if err := l.Commit(CommitData{}); err != nil {
cb, err := l.Commit(CommitData{})
if err != nil {
t.Error(err)
}
if err := cb(); err != nil {
t.Error(err)
}

Expand Down

0 comments on commit de5c78a

Please sign in to comment.