Other: Allow non-received messages to be imported to INBOX

This commit is contained in:
James Houlahan
2022-11-02 15:29:27 +01:00
parent 943d95a725
commit 4ded8784fc
4 changed files with 50 additions and 7 deletions

View File

@ -144,7 +144,7 @@ func matchMessages(have, want []Message) error {
})
if !IsSub(ToAny(have), ToAny(want)) {
return fmt.Errorf("missing messages: %v", want)
return fmt.Errorf("missing messages: have %+v, want %+v", have, want)
}
return nil