From f37cd0cc72a30168fc386f3a6711554bc0ebb246 Mon Sep 17 00:00:00 2001 From: Dustin Hiatt Date: Mon, 14 Dec 2015 16:04:23 -0600 Subject: [PATCH] Ups delta in batcher test case. --- batcher/batcher_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batcher/batcher_test.go b/batcher/batcher_test.go index d965415..91e8df7 100644 --- a/batcher/batcher_test.go +++ b/batcher/batcher_test.go @@ -84,7 +84,7 @@ func TestMaxTime(t *testing.T) { // This delta is normally 1-3 ms but running tests in CI with -race causes // this to run much slower. For now, just bump up the threshold. - assert.InDelta(200, time.Since(before).Seconds()*1000, 50) + assert.InDelta(200, time.Since(before).Seconds()*1000, 100) assert.True(len(batch) > 0) assert.Nil(err) }