From 3468810cb70662608645659002b5fff69b54b5e1 Mon Sep 17 00:00:00 2001 From: Silas Davis <silas@erisindustries.com> Date: Tue, 23 Aug 2016 16:03:21 +0100 Subject: [PATCH] Poof, and the tests were gone --- rpc/tendermint/test/client_rpc_test.go | 7 ++++--- rpc/tendermint/test/client_ws_test.go | 3 +++ rpc/tendermint/test/common_test.go | 3 +++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/rpc/tendermint/test/client_rpc_test.go b/rpc/tendermint/test/client_rpc_test.go index 317e60a1..7cd14afa 100644 --- a/rpc/tendermint/test/client_rpc_test.go +++ b/rpc/tendermint/test/client_rpc_test.go @@ -1,3 +1,6 @@ +// +build integration + +// Space above here matters package test import ( @@ -82,9 +85,7 @@ func TestJSONBroadcastTx(t *testing.T) { testBroadcastTx(t, "JSONRPC") } -// TODO: test has been disabled and needs to be re-enabled; tracked in issue -// https://github.com/eris-ltd/eris-db/issues/238 -func testJSONGetStorage(t *testing.T) { +func TestJSONGetStorage(t *testing.T) { if testing.Short() { t.Skip("skipping test in short mode.") } diff --git a/rpc/tendermint/test/client_ws_test.go b/rpc/tendermint/test/client_ws_test.go index 4c48c8a5..dbcc9f5c 100644 --- a/rpc/tendermint/test/client_ws_test.go +++ b/rpc/tendermint/test/client_ws_test.go @@ -1,3 +1,6 @@ +// +build integration + +// Space above here matters package test import ( diff --git a/rpc/tendermint/test/common_test.go b/rpc/tendermint/test/common_test.go index 988f249b..aabfc84f 100644 --- a/rpc/tendermint/test/common_test.go +++ b/rpc/tendermint/test/common_test.go @@ -1,3 +1,6 @@ +// +build integration + +// Space above here matters package test import ( -- GitLab