Skip to content

Commit 7ba883e

Browse files
committed
[bugfix] go get does not work for π v0.7.0
`go get github.com/elgopher/pi@v0.7.0` returns error: go: github.com/elgopher/pi@v0.7.0: create zip: internal/testimage/print/a.png: case-insensitive file name collision: "internal/testimage/print/A.png" and "internal/testimage/print/a.png"
1 parent 9621d1e commit 7ba883e

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

internal/testimage/print/a.png

-154 Bytes
Binary file not shown.

internal/testimage/print/b.png

155 Bytes
Loading

print_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func TestPrint(t *testing.T) {
1818
pi.ScreenHeight = 24
1919

2020
t.Run("should print chars using color on the top-left corner", func(t *testing.T) {
21-
chars := []string{`!`, `A`, `a`, `AB`, `ABCD`}
21+
chars := []string{`!`, `A`, `b`, `AB`, `ABCD`}
2222
for _, char := range chars {
2323
t.Run(char, func(t *testing.T) {
2424
pi.BootOrPanic()

0 commit comments

Comments
 (0)