diff --git a/db/database_test.go b/db/database_test.go index 0bf33b012e..4f49fa8888 100644 --- a/db/database_test.go +++ b/db/database_test.go @@ -824,7 +824,9 @@ func TestAllDocsOnly(t *testing.T) { revid, _, err := collection.Put(ctx, ids[i].DocID, body) ids[i].RevID = revid ids[i].Sequence = uint64(i + 1) - ids[i].Channels = channels + // FIXME: find proper solution to account for * channel + ids[i].Channels = append(channels, "*") + assert.NoError(t, err, "Couldn't create document") }