Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-goenka committed Feb 4, 2025
1 parent f09c43a commit 0603e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acceptance/cmd_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
func StartCmdServer(t *testing.T) *testserver.Server {
server := testserver.New(t)

server.Handle("/", func(r *http.Request) (any, int) {
server.Handle("/{$}", func(r *http.Request) (any, int) {
q := r.URL.Query()
args := strings.Split(q.Get("args"), " ")

Expand Down

0 comments on commit 0603e92

Please sign in to comment.