diff options
Diffstat (limited to 'cmd/swarm')
-rw-r--r-- | cmd/swarm/config.go | 2 | ||||
-rw-r--r-- | cmd/swarm/config_test.go | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cmd/swarm/config.go b/cmd/swarm/config.go index 05a020dc5..9931b12a2 100644 --- a/cmd/swarm/config.go +++ b/cmd/swarm/config.go @@ -276,7 +276,7 @@ func envVarsOverride(currentConfig *bzzapi.Config) (config *bzzapi.Config) { } //EnsAPIs can be set to "", so can't check for empty string, as it is allowed - if ensapi, exists := os.LookupEnv(SWARM_ENV_ENS_API); exists == true { + if ensapi, exists := os.LookupEnv(SWARM_ENV_ENS_API); exists { ensAPIs := strings.Split(ensapi, ",") // Disable ENS resolver if SWARM_ENS_API="" is specified if len(ensAPIs) == 0 { diff --git a/cmd/swarm/config_test.go b/cmd/swarm/config_test.go index 7ffe2cfb9..166980d14 100644 --- a/cmd/swarm/config_test.go +++ b/cmd/swarm/config_test.go @@ -124,7 +124,7 @@ func TestCmdLineOverrides(t *testing.T) { t.Fatalf("Expected network ID to be %d, got %d", 42, info.NetworkId) } - if info.SyncEnabled != true { + if !info.SyncEnabled { t.Fatal("Expected Sync to be enabled, but is false") } @@ -219,7 +219,7 @@ func TestFileOverrides(t *testing.T) { t.Fatalf("Expected network ID to be %d, got %d", 54, info.NetworkId) } - if info.SyncEnabled != true { + if !info.SyncEnabled { t.Fatal("Expected Sync to be enabled, but is false") } @@ -334,7 +334,7 @@ func TestEnvVars(t *testing.T) { t.Fatalf("Expected Cors flag to be set to %s, got %s", "*", info.Cors) } - if info.SyncEnabled != true { + if !info.SyncEnabled { t.Fatal("Expected Sync to be enabled, but is false") } @@ -431,7 +431,7 @@ func TestCmdLineOverridesFile(t *testing.T) { t.Fatalf("Expected network ID to be %d, got %d", expectNetworkId, info.NetworkId) } - if info.SyncEnabled != true { + if !info.SyncEnabled { t.Fatal("Expected Sync to be enabled, but is false") } |