From f4fc01ef8d96aa7e034fb97f210ce83c26f45960 Mon Sep 17 00:00:00 2001 From: "John R. Lenton" Date: Mon, 22 Mar 2021 21:14:57 +0000 Subject: [PATCH] make minimal change so tests pass again fixes #55. --- abide_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abide_test.go b/abide_test.go index 4211283..dcfac9b 100644 --- a/abide_test.go +++ b/abide_test.go @@ -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