groupware: fix test logic error in the JMAP ws integration test

This commit is contained in:
Pascal Bleser
2026-04-28 11:57:05 +02:00
parent 91e2705bb1
commit ac52a4f967

View File

@@ -230,7 +230,7 @@ func TestWs(t *testing.T) {
slices.Sort(emailIds)
b := make([]string, len(changes.Destroyed))
copy(b, changes.Destroyed)
slices.Sort(changes.Destroyed)
slices.Sort(b)
require.EqualValues(a, b)
}
require.Empty(changes.Updated)