From 83b0bad4e6d7bbc4fa943c3e6f30e786cf4c2ab6 Mon Sep 17 00:00:00 2001 From: Ryan O'Hara-Reid Date: Mon, 3 Apr 2017 12:39:44 +1000 Subject: [PATCH] General formatting config_test.go --- config/config_tests/config_test.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/config/config_tests/config_test.go b/config/config_tests/config_test.go index 23829c77..c27f4dc2 100644 --- a/config/config_tests/config_test.go +++ b/config/config_tests/config_test.go @@ -77,8 +77,6 @@ func TestCheckExchangeConfigValues(t *testing.T) { t.Errorf("Test failed. checkExchangeConfigValues.LoadConfig: %s", err.Error()) } - checkExchangeConfigValues.Exchanges[0].AuthenticatedAPISupport = true - err3 := checkExchangeConfigValues.CheckExchangeConfigValues() if err3 != nil { t.Errorf("Test failed. checkExchangeConfigValues.CheckExchangeConfigValues: %s", err.Error()) @@ -119,7 +117,7 @@ func TestReadConfig(t *testing.T) { readConfig := config.GetConfig() err := readConfig.ReadConfig() if err != nil { - t.Error("Test failed. TestReadConfig" + err.Error()) + t.Error("Test failed. TestReadConfig " + err.Error()) } } @@ -129,7 +127,7 @@ func TestLoadConfig(t *testing.T) { loadConfig := config.GetConfig() err := loadConfig.LoadConfig() if err != nil { - t.Error("Test failed. TestLoadConfig" + err.Error()) + t.Error("Test failed. TestLoadConfig " + err.Error()) } }