added just FF byte

This commit is contained in:
Sunny Aggarwal 2018-04-10 01:32:04 +02:00
parent 9b40cf184f
commit 69448f90e5
1 changed files with 1 additions and 0 deletions

View File

@ -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},
}