Skip to content

Commit

Permalink
Fix build issue under go1.15 environment
Browse files Browse the repository at this point in the history
  • Loading branch information
YuqiXiao authored Sep 3, 2020
1 parent 4379ff7 commit c462c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bfe_bufio/bufio_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func TestReader(t *testing.T) {
for i := 0; i < len(texts)-1; i++ {
texts[i] = str + "\n"
all += texts[i]
str += string(i%26 + 'a')
str += string(rune(i%26) + 'a')
}
texts[len(texts)-1] = all

Expand Down

0 comments on commit c462c2d

Please sign in to comment.