aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 22:25:43 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 22:25:43 +0800
commit28e1971272d5bab6aa683d3bbe711226ca1fef98 (patch)
tree53dc1673f27dac058a37c738b8fe32b2ddd9a5c9 /rpc/api_test.go
parent41c493ace9182bc99226d66dc4479277fbbf749d (diff)
parent0cde7a4d46f68863535fbe470499b9d0dfd6ed7a (diff)
downloaddexon-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar
dexon-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.gz
dexon-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.bz2
dexon-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.lz
dexon-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.xz
dexon-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.zst
dexon-28e1971272d5bab6aa683d3bbe711226ca1fef98.zip
Merge branch 'rpcxeth' into rpcfrontier
Conflicts: rpc/api.go
Diffstat (limited to 'rpc/api_test.go')
-rw-r--r--rpc/api_test.go64
1 files changed, 32 insertions, 32 deletions
diff --git a/rpc/api_test.go b/rpc/api_test.go
index ec03822c5..727ade007 100644
--- a/rpc/api_test.go
+++ b/rpc/api_test.go
@@ -2,9 +2,9 @@ package rpc
import (
"encoding/json"
- "sync"
+ // "sync"
"testing"
- "time"
+ // "time"
)
func TestWeb3Sha3(t *testing.T) {
@@ -24,33 +24,33 @@ func TestWeb3Sha3(t *testing.T) {
}
}
-func TestFilterClose(t *testing.T) {
- t.Skip()
- api := &EthereumApi{
- logs: make(map[int]*logFilter),
- messages: make(map[int]*whisperFilter),
- quit: make(chan struct{}),
- }
-
- filterTickerTime = 1
- api.logs[0] = &logFilter{}
- api.messages[0] = &whisperFilter{}
- var wg sync.WaitGroup
- wg.Add(1)
- go api.start()
- go func() {
- select {
- case <-time.After(500 * time.Millisecond):
- api.stop()
- wg.Done()
- }
- }()
- wg.Wait()
- if len(api.logs) != 0 {
- t.Error("expected logs to be empty")
- }
-
- if len(api.messages) != 0 {
- t.Error("expected messages to be empty")
- }
-}
+// func TestFilterClose(t *testing.T) {
+// t.Skip()
+// api := &EthereumApi{
+// logs: make(map[int]*logFilter),
+// messages: make(map[int]*whisperFilter),
+// quit: make(chan struct{}),
+// }
+
+// filterTickerTime = 1
+// api.logs[0] = &logFilter{}
+// api.messages[0] = &whisperFilter{}
+// var wg sync.WaitGroup
+// wg.Add(1)
+// go api.start()
+// go func() {
+// select {
+// case <-time.After(500 * time.Millisecond):
+// api.stop()
+// wg.Done()
+// }
+// }()
+// wg.Wait()
+// if len(api.logs) != 0 {
+// t.Error("expected logs to be empty")
+// }
+
+// if len(api.messages) != 0 {
+// t.Error("expected messages to be empty")
+// }
+// }