Skip to content

Commit c444037

Browse files
committed
Update package imports to use gopkg.in/dnaeon/go-vcr.v2
1 parent ca74107 commit c444037

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

examples/https_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"strings"
3131
"testing"
3232

33-
"github.com/dnaeon/go-vcr/recorder"
33+
"gopkg.in/dnaeon/go-vcr.v2/recorder"
3434
)
3535

3636
func TestHTTPS(t *testing.T) {

examples/simple_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"strings"
3131
"testing"
3232

33-
"github.com/dnaeon/go-vcr/recorder"
33+
"gopkg.in/dnaeon/go-vcr.v2/recorder"
3434
)
3535

3636
func TestSimple(t *testing.T) {

recorder/recorder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"strconv"
3838
"time"
3939

40-
"github.com/dnaeon/go-vcr/cassette"
40+
"gopkg.in/dnaeon/go-vcr.v2/cassette"
4141
)
4242

4343
// Mode represents recording/playback mode

recorder/recorder_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ import (
4141

4242
"bytes"
4343

44-
"github.com/dnaeon/go-vcr/cassette"
45-
"github.com/dnaeon/go-vcr/recorder"
44+
"gopkg.in/dnaeon/go-vcr.v2/cassette"
45+
"gopkg.in/dnaeon/go-vcr.v2/recorder"
4646
)
4747

4848
type recordTest struct {

0 commit comments

Comments
 (0)