diff --git a/.gitignore b/.gitignore index 4f76b3c..1feb178 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ bin/* settings.env logs/* docker-configs/loki/* +.DS_Store diff --git a/server/server_integration_test.go b/server/server_integration_test.go index 750ab69..1704198 100644 --- a/server/server_integration_test.go +++ b/server/server_integration_test.go @@ -24,7 +24,7 @@ func launchOrGetTestServer(t *testing.T) (theURL string, logs bytes.Buffer, clos return fmt.Sprintf("http://%s:%s", host, os.Getenv("PORT")), logs, func() error { return nil } } - srv, err := newTestServer(&logs) + srv, err := newTestServer(WithLogbuf(&logs)) require.NoError(t, err) return fmt.Sprintf("http://localhost:%d", srv.Port()), logs, srv.Close }