Skip to content

Commit

Permalink
make minimal change so tests pass again
Browse files Browse the repository at this point in the history
fixes beme#55.
  • Loading branch information
chipaca committed Mar 22, 2021
1 parent 635a098 commit f4fc01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abide_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func testingSnapshot(id, value string) *snapshot {
func testingSnapshots(count int) snapshots {
s := make(snapshots, count)
for i := 0; i < count; i++ {
id := string(i)
id := string(rune(i))
s[snapshotID(id)] = testingSnapshot(id, id)
}
return s
Expand Down

0 comments on commit f4fc01e

Please sign in to comment.