mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
Fix flaky test
This commit is contained in:
parent
9e2f88c00d
commit
4638405cbd
@ -436,7 +436,8 @@ func TestDequeue(t *testing.T) {
|
|||||||
}
|
}
|
||||||
for queue, want := range tc.wantDeadlines {
|
for queue, want := range tc.wantDeadlines {
|
||||||
gotDeadlines := h.GetDeadlinesEntries(t, r.client, queue)
|
gotDeadlines := h.GetDeadlinesEntries(t, r.client, queue)
|
||||||
if diff := cmp.Diff(want, gotDeadlines, h.SortZSetEntryOpt); diff != "" {
|
cmpOpts := []cmp.Option{h.SortZSetEntryOpt, h.EquateInt64Approx(2)} // allow up to 2 second margin in Score
|
||||||
|
if diff := cmp.Diff(want, gotDeadlines, cmpOpts...); diff != "" {
|
||||||
t.Errorf("mismatch found in %q: (-want,+got):\n%s", base.DeadlinesKey(queue), diff)
|
t.Errorf("mismatch found in %q: (-want,+got):\n%s", base.DeadlinesKey(queue), diff)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user