diff --git a/rpc/tendermint/test/client_rpc_test.go b/rpc/tendermint/test/client_rpc_test.go
index 317e60a1d2789c84546de9d807ecc88cb3920361..7cd14afa7aaba2a3a6b45d2003d1b3b0d1022f43 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 4c48c8a530b252c926df79365f0c94ca708c1679..dbcc9f5c9c261f6f7be28a510cafe81ad3c5abf3 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 988f249b180f97861cf6b090288f48705d7f60de..aabfc84f3388060f1831a623812e097eef74dbf2 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 (