Skip to content

Commit

Permalink
patch test
Browse files Browse the repository at this point in the history
  • Loading branch information
sethgrid committed Dec 2, 2024
1 parent 30530d0 commit 9945f03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ bin/*
settings.env
logs/*
docker-configs/loki/*
.DS_Store
2 changes: 1 addition & 1 deletion server/server_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 9945f03

Please sign in to comment.