diff --git a/modules/finnhub/client_test.go b/modules/finnhub/client_test.go deleted file mode 100644 index c73be5ad..00000000 --- a/modules/finnhub/client_test.go +++ /dev/null @@ -1,25 +0,0 @@ -package finnhub - -import ( - "fmt" - "testing" -) - -func TestFinnhubClient(t *testing.T) { - testClient := &Client{ - symbols: []string{ - "AAPL", - "MSFT", - }, - apiKey: "", - } - - r, err := testClient.Getquote() - if err != nil { - fmt.Println(err) - } - - fmt.Println(r[0].Stock, r[0].C) - fmt.Println(r[1].Stock, r[1].C) - -}