internal/processtest/testdata: fix col and row

Updates #2154
This commit is contained in:
Hajime Hoshi 2022-07-04 12:07:34 +09:00
parent 5411e8136b
commit fb23e4b578

View File

@ -45,7 +45,7 @@ func init() {
baseImage.Fill(color.White)
for j := 0; j < h; j++ {
for i := 0; i < w; i++ {
baseImage.Set(j, i, color.Black)
baseImage.Set(i, j, color.Black)
}
}
derivedImage.DrawImage(baseImage, nil)