Skip to content

Commit

Permalink
Update package imports to use gopkg.in/dnaeon/go-vcr.v2
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaeon committed Aug 16, 2022
1 parent ca74107 commit c444037
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/https_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"strings"
"testing"

"github.com/dnaeon/go-vcr/recorder"
"gopkg.in/dnaeon/go-vcr.v2/recorder"
)

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

"github.com/dnaeon/go-vcr/recorder"
"gopkg.in/dnaeon/go-vcr.v2/recorder"
)

func TestSimple(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion recorder/recorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (
"strconv"
"time"

"github.com/dnaeon/go-vcr/cassette"
"gopkg.in/dnaeon/go-vcr.v2/cassette"
)

// Mode represents recording/playback mode
Expand Down
4 changes: 2 additions & 2 deletions recorder/recorder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ import (

"bytes"

"github.com/dnaeon/go-vcr/cassette"
"github.com/dnaeon/go-vcr/recorder"
"gopkg.in/dnaeon/go-vcr.v2/cassette"
"gopkg.in/dnaeon/go-vcr.v2/recorder"
)

type recordTest struct {
Expand Down

0 comments on commit c444037

Please sign in to comment.