From 69448f90e5f796146ce343241431bc5b96015e17 Mon Sep 17 00:00:00 2001 From: Sunny Aggarwal Date: Tue, 10 Apr 2018 01:32:04 +0200 Subject: [PATCH] added just FF byte --- types/store_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types/store_test.go b/types/store_test.go index 2fd944185..43dd1f5d3 100644 --- a/types/store_test.go +++ b/types/store_test.go @@ -18,6 +18,7 @@ func TestPrefixEndBytes(t *testing.T) { {[]byte{byte(55), byte(200), byte(255)}, []byte{byte(55), byte(201)}}, {[]byte{byte(55), byte(255), byte(255)}, []byte{byte(56)}}, {[]byte{byte(255), byte(255), byte(255)}, nil}, + {[]byte{byte(255)}, nil}, {nil, nil}, }