aboutsummaryrefslogtreecommitdiffstats
path: root/worker
diff options
context:
space:
mode:
Diffstat (limited to 'worker')
-rw-r--r--worker/imap/seqmap_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/worker/imap/seqmap_test.go b/worker/imap/seqmap_test.go
index 10d67f3d..70677218 100644
--- a/worker/imap/seqmap_test.go
+++ b/worker/imap/seqmap_test.go
@@ -31,11 +31,11 @@ func TestSeqMap(t *testing.T) {
assert.Equal(false, found)
uid, found = seqmap.Get(1)
- assert.Equal(uint32(1337), uid)
+ assert.Equal(1337, int(uid))
assert.Equal(true, found)
uid, found = seqmap.Pop(1)
- assert.Equal(uint32(1337), uid)
+ assert.Equal(1337, int(uid))
assert.Equal(true, found)
assert.Equal(2, seqmap.Size())