Skip to content

Commit

Permalink
fix gearbox_test (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
JayLZhou authored Dec 15, 2020
1 parent 1952315 commit 2be0e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gearbox_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ var handler = func(ctx Context) {}
var errorHandler = func(ctx Context) {
m := make(map[string]int)
m["a"] = 0
ctx.SendString(string(5 / m["a"]))
ctx.SendString(string(rune(5 / m["a"])))
}

// headerHandler echos header's value of key "my-header"
Expand Down

0 comments on commit 2be0e25

Please sign in to comment.