8000 chore: create interface for pkgs to return codersdk errors by Emyrk · Pull Request #18719 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: create interface for pkgs to return codersdk errors #18719

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 3 commits into from
Jul 3, 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
fixup test assert param order
  • Loading branch information
Emyrk committed Jul 3, 2025
commit 3cc93491d446cc0fe7a803788ab0ce9724b860c2
2 changes: 1 addition & 1 deletion coderd/wsbuilder/wsbuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ func TestWsbuildError(t *testing.T) {

code, resp := respErr.Response()
require.Equal(t, http.StatusBadRequest, code)
require.Equal(t, resp.Message, msg)
require.Equal(t, msg, resp.Message)
}

type txExpect func(mTx *dbmock.MockStore)
Expand Down
Loading
0