Skip to content

Commit

Permalink
fix: remove test with lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Dec 6, 2024
1 parent 9032046 commit fc07a3c
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions thorclient/wsclient/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -445,27 +445,3 @@ func TestSubscribeBeats2WithServer(t *testing.T) {
t.Log(ev.Data)
}
}

func TestSubscriptThorSolo(t *testing.T) {
t.Skip("manual test")
client, err := NewClient("http://localhost:8669")
if err != nil {
t.Fatal(err)
}

sub, err := client.SubscribeBlocks("")
if err != nil {
t.Fatal(err)
}

for {
select {
case ev := <-sub.EventChan:
if ev.Error != nil {
t.Fatal(ev.Error)
return
}
t.Log(ev.Data.Obsolete)
}
}
}

0 comments on commit fc07a3c

Please sign in to comment.