Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
use localhost to prevent security pop-up on macos. (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
rghetia committed Sep 13, 2019
1 parent a3453a5 commit e1ae7ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion equivalence_test.go
Expand Up @@ -376,7 +376,7 @@ type fakeMetricsServer struct {
}

func createFakeServer(t *testing.T) (*fakeMetricsServer, string, func()) {
ln, err := net.Listen("tcp", ":0")
ln, err := net.Listen("tcp", "localhost:0")
if err != nil {
t.Fatalf("Failed to bind to an available address: %v", err)
}
Expand Down

0 comments on commit e1ae7ed

Please sign in to comment.