diff options
author | lash <nolash@users.noreply.github.com> | 2018-11-26 20:52:04 +0800 |
---|---|---|
committer | Anton Evangelatov <anton.evangelatov@gmail.com> | 2018-11-26 20:52:04 +0800 |
commit | 197d609b9a3a9b5436a9902dcc8db38bb3e7543b (patch) | |
tree | 5a5e6650aed71fbff63cffd62f84e2bb2de0e8cc /swarm/pss/notify/notify_test.go | |
parent | ca228569e4aedd5ebbe853ec61761561d86579a6 (diff) | |
download | dexon-197d609b9a3a9b5436a9902dcc8db38bb3e7543b.tar.gz dexon-197d609b9a3a9b5436a9902dcc8db38bb3e7543b.tar.zst dexon-197d609b9a3a9b5436a9902dcc8db38bb3e7543b.zip |
swarm/pss: Message handler refactor (#18169)
Diffstat (limited to 'swarm/pss/notify/notify_test.go')
-rw-r--r-- | swarm/pss/notify/notify_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swarm/pss/notify/notify_test.go b/swarm/pss/notify/notify_test.go index d4d383a6b..6100195b0 100644 --- a/swarm/pss/notify/notify_test.go +++ b/swarm/pss/notify/notify_test.go @@ -121,7 +121,7 @@ func TestStart(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), time.Second*2) defer cancel() rmsgC := make(chan *pss.APIMsg) - rightSub, err := rightRpc.Subscribe(ctx, "pss", rmsgC, "receive", controlTopic) + rightSub, err := rightRpc.Subscribe(ctx, "pss", rmsgC, "receive", controlTopic, false, false) if err != nil { t.Fatal(err) } @@ -174,7 +174,7 @@ func TestStart(t *testing.T) { t.Fatalf("expected payload length %d, have %d", len(updateMsg)+symKeyLength, len(dMsg.Payload)) } - rightSubUpdate, err := rightRpc.Subscribe(ctx, "pss", rmsgC, "receive", rsrcTopic) + rightSubUpdate, err := rightRpc.Subscribe(ctx, "pss", rmsgC, "receive", rsrcTopic, false, false) if err != nil { t.Fatal(err) } |