diff --git a/examples/https_test.go b/examples/https_test.go index 19932a1..0efcf5d 100644 --- a/examples/https_test.go +++ b/examples/https_test.go @@ -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) { diff --git a/examples/simple_test.go b/examples/simple_test.go index 5c5185b..68917f1 100644 --- a/examples/simple_test.go +++ b/examples/simple_test.go @@ -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) { diff --git a/recorder/recorder.go b/recorder/recorder.go index ebcdc2b..307c420 100644 --- a/recorder/recorder.go +++ b/recorder/recorder.go @@ -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 diff --git a/recorder/recorder_test.go b/recorder/recorder_test.go index 93bfdf0..c40b37d 100644 --- a/recorder/recorder_test.go +++ b/recorder/recorder_test.go @@ -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 {