diff options
Diffstat (limited to '')
-rw-r--r-- | encoding_test.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/encoding_test.go b/encoding_test.go index 0f9245e..44104e4 100644 --- a/encoding_test.go +++ b/encoding_test.go @@ -248,10 +248,14 @@ func TestEncodeDecodeStrorage(t *testing.T) { { name: "Many Items", store: map[string]string{ - "Test1": "Test", - "Test2": "Test", - "Test3": "Test", - "Test4": "Test", + "1": "Test", + "2": "Test", + "3": "Test", + "4": "Test", + "5": "Test", + "6": "Test", + "7": "Test", + "8": "Test", }, policy: PolicyNone, maxCost: 0, |