Browse Source

Fix gofmt -s

Rod Hynes 1 year ago
parent
commit
4873411d6b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      psiphon/common/inproxy/inproxy_test.go

+ 1 - 1
psiphon/common/inproxy/inproxy_test.go

@@ -953,7 +953,7 @@ func runTestInproxy(doMustUpgrade bool) error {
 
 		serverQualityProxyIDsMutex.Lock()
 		defer serverQualityProxyIDsMutex.Unlock()
-		for proxyID, _ := range serverQualityProxyIDs {
+		for proxyID := range serverQualityProxyIDs {
 			if !broker.proxyQualityState.HasQuality(proxyID, testProxyASN, "") {
 				return errors.TraceNew("unexpected missing HasQuality (no client ASN)")
 			}