Browse Source

lz4block: Remove unused test code

greatroar 5 years ago
parent
commit
617299b884
1 changed files with 0 additions and 9 deletions
  1. 0 9
      internal/lz4block/decode_test.go

+ 0 - 9
internal/lz4block/decode_test.go

@@ -2,19 +2,10 @@ package lz4block
 
 import (
 	"bytes"
-	"encoding/base64"
 	"strings"
 	"testing"
 )
 
-func unbase64(in string) []byte {
-	p, err := base64.StdEncoding.DecodeString(in)
-	if err != nil {
-		panic(err)
-	}
-	return p
-}
-
 func TestBlockDecode(t *testing.T) {
 	appendLen := func(p []byte, size int) []byte {
 		for size > 0xFF {