GODT-1754: Add logs for unilateral updates and SEARCH.

This commit is contained in:
Jakub
2022-08-02 12:39:48 +02:00
parent bdb35f1c1d
commit 9bb16dec48
9 changed files with 112 additions and 73 deletions

View File

@ -25,7 +25,7 @@ import (
)
func TestUpdatesCanDelete(t *testing.T) {
u := newIMAPUpdates()
u := newIMAPUpdates(nil)
can, _ := u.CanDelete("mbox")
require.True(t, can)
@ -38,7 +38,7 @@ func TestUpdatesCanDelete(t *testing.T) {
}
func TestUpdatesCannotDelete(t *testing.T) {
u := newIMAPUpdates()
u := newIMAPUpdates(nil)
u.forbidExpunge("mbox")
can, wait := u.CanDelete("mbox")