From 33398316ef0267a0b1f25e18e0bbef378f147acc Mon Sep 17 00:00:00 2001 From: Kavan McEachern Date: Mon, 30 Apr 2018 03:14:16 -0400 Subject: [PATCH] Fix test to use GDAX config from testdata (#117) --- exchanges/gdax/gdax_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchanges/gdax/gdax_test.go b/exchanges/gdax/gdax_test.go index abb4b780..522c976d 100644 --- a/exchanges/gdax/gdax_test.go +++ b/exchanges/gdax/gdax_test.go @@ -22,7 +22,7 @@ func TestSetDefaults(t *testing.T) { func TestSetup(t *testing.T) { cfg := config.GetConfig() cfg.LoadConfig("../../testdata/configtest.json") - gdxConfig, err := cfg.GetExchangeConfig("Bitfinex") + gdxConfig, err := cfg.GetExchangeConfig("GDAX") if err != nil { t.Error("Test Failed - GDAX Setup() init error") }