Skip to content

Commit 82b3589

Browse files
committed
Add failing test
1 parent fa48a55 commit 82b3589

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

uint32_store_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ func TestFastStringToUint32Empty(t *testing.T) {
1818
checkWithMapSlice(t, ms)
1919
}
2020

21+
func TestFastStringToUint32BigSpan(t *testing.T) {
22+
ms := mapSliceN(map[string]uint32{"a!": 1, "a~": 2}, 2)
23+
checkWithMapSlice(t, ms)
24+
}
25+
2126
func TestFastStringToUint32(t *testing.T) {
2227
const nStrs = 8192
2328
m := randomSmallStrings(nStrs, 8)

0 commit comments

Comments
 (0)