Skip to content

Commit

Permalink
Changes for merge back to origin fork
Browse files Browse the repository at this point in the history
  • Loading branch information
Caesurus committed Oct 22, 2020
1 parent e1c2efc commit 2751f8d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io/ioutil"
"testing"

"github.com/caesurus/lz4"
"github.com/pierrec/lz4"
)

func BenchmarkCompress(b *testing.B) {
Expand Down
2 changes: 1 addition & 1 deletion block_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"io/ioutil"
"testing"

"github.com/caesurus/lz4"
"github.com/pierrec/lz4"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/lz4c/compress.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/lz4c/uncompress.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

"github.com/caesurus/lz4"
"github.com/pierrec/lz4"
)

func Example() {
Expand Down
2 changes: 1 addition & 1 deletion fuzz/lz4.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"io"

"github.com/caesurus/lz4"
"github.com/pierrec/lz4"
)

// Fuzz function for the Reader and Writer.
Expand Down
2 changes: 1 addition & 1 deletion internal/xxh32/xxh32zero_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion reader_legacy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"testing"

"github.com/caesurus/lz4"
"github.com/pierrec/lz4"
)

func TestReaderLegacy(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"testing"

"github.com/caesurus/lz4"
"github.com/pierrec/lz4"
)

func TestReader(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion writer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"reflect"
"testing"

"github.com/caesurus/lz4"
"github.com/pierrec/lz4"
)

func TestWriter(t *testing.T) {
Expand Down

0 comments on commit 2751f8d

Please sign in to comment.