8000 chore: remove usage of github.com/go-chi/render by aslilac · Pull Request #17324 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: remove usage of github.com/go-chi/render #17324

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 9, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
🧹
  • Loading branch information
aslilac committed Apr 9, 2025
commit dfd9f2b5f343cf0afce3beec785589196c8232ca
2 changes: 1 addition & 1 deletion provisionersdk/agent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func serveScript(t *testing.T, in string) string {

srv := httptest.NewServer(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.WriteHeader(http.StatusOK)
rw.Write([]byte(in))
_, _ = rw.Write([]byte(in))
}))
t.Cleanup(srv.Close)
srvURL, err := url.Parse(srv.URL)
Expand Down
Loading
0