From 2751f8daa6c9367dc263751035872e485a9e919d Mon Sep 17 00:00:00 2001 From: Tim dW Date: Thu, 22 Oct 2020 09:31:32 -0400 Subject: [PATCH] Changes for merge back to origin fork --- bench_test.go | 2 +- block_test.go | 2 +- cmd/lz4c/compress.go | 2 +- cmd/lz4c/uncompress.go | 2 +- example_test.go | 2 +- fuzz/lz4.go | 2 +- internal/xxh32/xxh32zero_test.go | 2 +- reader.go | 2 +- reader_legacy_test.go | 2 +- reader_test.go | 2 +- writer.go | 2 +- writer_test.go | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bench_test.go b/bench_test.go index 64c4fe06..02485287 100644 --- a/bench_test.go +++ b/bench_test.go @@ -6,7 +6,7 @@ import ( "io/ioutil" "testing" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) func BenchmarkCompress(b *testing.B) { diff --git a/block_test.go b/block_test.go index b93b4ffd..249e822a 100644 --- a/block_test.go +++ b/block_test.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "testing" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) const ( diff --git a/cmd/lz4c/compress.go b/cmd/lz4c/compress.go index 15860291..9c1ceb37 100644 --- a/cmd/lz4c/compress.go +++ b/cmd/lz4c/compress.go @@ -10,7 +10,7 @@ import ( "code.cloudfoundry.org/bytefmt" "github.com/schollz/progressbar" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" "github.com/pierrec/cmdflag" ) diff --git a/cmd/lz4c/uncompress.go b/cmd/lz4c/uncompress.go index c30684ed..baeac5df 100644 --- a/cmd/lz4c/uncompress.go +++ b/cmd/lz4c/uncompress.go @@ -10,7 +10,7 @@ import ( "github.com/schollz/progressbar" "github.com/pierrec/cmdflag" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) // Uncompress uncompresses a set of files or from stdin to stdout. diff --git a/example_test.go b/example_test.go index e440176a..92083879 100644 --- a/example_test.go +++ b/example_test.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) func Example() { diff --git a/fuzz/lz4.go b/fuzz/lz4.go index 1e16a606..b5cf55a6 100755 --- a/fuzz/lz4.go +++ b/fuzz/lz4.go @@ -4,7 +4,7 @@ import ( "bytes" "io" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) // Fuzz function for the Reader and Writer. diff --git a/internal/xxh32/xxh32zero_test.go b/internal/xxh32/xxh32zero_test.go index 2ee735d4..d8d913c3 100644 --- a/internal/xxh32/xxh32zero_test.go +++ b/internal/xxh32/xxh32zero_test.go @@ -6,7 +6,7 @@ import ( "hash/fnv" "testing" - "github.com/caesurus/lz4/internal/xxh32" + "github.com/pierrec/lz4/internal/xxh32" qt "github.com/frankban/quicktest" ) diff --git a/reader.go b/reader.go index 20ff7d2a..87dd72bd 100644 --- a/reader.go +++ b/reader.go @@ -6,7 +6,7 @@ import ( "io" "io/ioutil" - "github.com/caesurus/lz4/internal/xxh32" + "github.com/pierrec/lz4/internal/xxh32" ) // Reader implements the LZ4 frame decoder. diff --git a/reader_legacy_test.go b/reader_legacy_test.go index c57b1018..cddb9dff 100644 --- a/reader_legacy_test.go +++ b/reader_legacy_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) func TestReaderLegacy(t *testing.T) { diff --git a/reader_test.go b/reader_test.go index d5fae2ae..e7314a78 100644 --- a/reader_test.go +++ b/reader_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) func TestReader(t *testing.T) { diff --git a/writer.go b/writer.go index 85132768..6a60a9a6 100644 --- a/writer.go +++ b/writer.go @@ -6,7 +6,7 @@ import ( "io" "runtime" - "github.com/caesurus/lz4/internal/xxh32" + "github.com/pierrec/lz4/internal/xxh32" ) // zResult contains the results of compressing a block. diff --git a/writer_test.go b/writer_test.go index 15b1505a..42cc7551 100644 --- a/writer_test.go +++ b/writer_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/caesurus/lz4" + "github.com/pierrec/lz4" ) func TestWriter(t *testing.T) {