@@ -28,7 +28,7 @@ func TestGetTickerPrice_Ccxt(t *testing.T) {
2828
2929 for _ , exchangeName := range supportedExchanges {
3030 t .Run (exchangeName , func (t * testing.T ) {
31- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {emptyAPIKey }, false )
31+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {emptyAPIKey }, false )
3232 if ! assert .NoError (t , e ) {
3333 return
3434 }
@@ -55,7 +55,7 @@ func TestGetOrderBook_Ccxt(t *testing.T) {
5555
5656 for _ , exchangeName := range supportedExchanges {
5757 t .Run (exchangeName , func (t * testing.T ) {
58- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {emptyAPIKey }, false )
58+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {emptyAPIKey }, false )
5959 if ! assert .NoError (t , e ) {
6060 return
6161 }
@@ -88,7 +88,7 @@ func TestGetTrades_Ccxt(t *testing.T) {
8888
8989 for _ , exchangeName := range supportedExchanges {
9090 t .Run (exchangeName , func (t * testing.T ) {
91- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {emptyAPIKey }, false )
91+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {emptyAPIKey }, false )
9292 if ! assert .NoError (t , e ) {
9393 return
9494 }
@@ -113,7 +113,7 @@ func TestGetTradeHistory_Ccxt(t *testing.T) {
113113
114114 for exchangeName , apiKey := range supportedTradingExchanges {
115115 t .Run (exchangeName , func (t * testing.T ) {
116- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
116+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
117117 if ! assert .NoError (t , e ) {
118118 return
119119 }
@@ -171,7 +171,7 @@ func TestGetAccountBalances_Ccxt(t *testing.T) {
171171
172172 for exchangeName , apiKey := range supportedTradingExchanges {
173173 t .Run (exchangeName , func (t * testing.T ) {
174- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
174+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
175175 if ! assert .NoError (t , e ) {
176176 return
177177 }
@@ -216,7 +216,7 @@ func TestGetOpenOrders_Ccxt(t *testing.T) {
216216 for exchangeName , apiKey := range supportedTradingExchanges {
217217 for _ , pair := range tradingPairs {
218218 t .Run (exchangeName , func (t * testing.T ) {
219- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
219+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
220220 if ! assert .NoError (t , e ) {
221221 return
222222 }
@@ -322,7 +322,7 @@ func TestAddOrder_Ccxt(t *testing.T) {
322322 },
323323 } {
324324 t .Run (exchangeName , func (t * testing.T ) {
325- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
325+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
326326 if ! assert .NoError (t , e ) {
327327 return
328328 }
@@ -372,7 +372,7 @@ func TestCancelOrder_Ccxt(t *testing.T) {
372372 },
373373 } {
374374 t .Run (exchangeName , func (t * testing.T ) {
375- testCcxtExchange , e := makeCcxtExchange ("http://localhost:3000" , exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
375+ testCcxtExchange , e := makeCcxtExchange (exchangeName , testOrderConstraints , []api.ExchangeAPIKey {apiKey }, false )
376376 if ! assert .NoError (t , e ) {
377377 return
378378 }
0 commit comments