From 3438c5f256a7ad45963de03d010d015694b9d4fd Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Wed, 25 Oct 2017 09:02:12 -0500 Subject: [PATCH] Lower timeout of integration test --- integration_test/geth_blockchain_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test/geth_blockchain_test.go b/integration_test/geth_blockchain_test.go index 2cdf2985..4109ccd1 100644 --- a/integration_test/geth_blockchain_test.go +++ b/integration_test/geth_blockchain_test.go @@ -46,6 +46,6 @@ var _ = Describe("Reading from the Geth blockchain", func() { Expect(firstBlock.Number.Add(firstBlock.Number, big.NewInt(1))).Should(Equal(secondBlock.Number)) close(done) - }, 30) + }, 10) })