@@ -6,7 +6,7 @@ import (
"io/ioutil"
"testing"
- lz4 "github.com/pierrec/lz4/v2"
+ "github.com/pierrec/lz4"
)
func BenchmarkCompress(b *testing.B) {
@@ -8,7 +8,7 @@ import (
"reflect"
type testcase struct {
@@ -1,3 +1,3 @@
-module github.com/pierrec/lz4/v2
+module github.com/pierrec/lz4
require github.com/pkg/profile v1.2.1
"io"
- "github.com/pierrec/lz4/v2/internal/xxh32"
+ "github.com/pierrec/lz4/internal/xxh32"
// Reader implements the LZ4 frame decoder.
@@ -9,7 +9,7 @@ import (
"strings"
func TestReader(t *testing.T) {
@@ -5,7 +5,7 @@ import (
"fmt"
// Writer implements the LZ4 frame encoder.
func TestWriter(t *testing.T) {