Skip to content

Commit f6d6ea5

Browse files
committed
fix import path
1 parent edd3041 commit f6d6ea5

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/launchdarkly/go-test-helpers
1+
module github.com/launchdarkly/go-test-helpers/v2
22

33
go 1.13
44

httphelpers/handlers_streaming_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/stretchr/testify/assert"
1111
"github.com/stretchr/testify/require"
1212

13-
helpers "github.com/launchdarkly/go-test-helpers"
13+
helpers "github.com/launchdarkly/go-test-helpers/v2"
1414
)
1515

1616
func TestChunkedStreamingHandlerSend(t *testing.T) {

ldservices/events_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ldservices
33
import (
44
"net/http"
55

6-
"github.com/launchdarkly/go-test-helpers/httphelpers"
6+
"github.com/launchdarkly/go-test-helpers/v2/httphelpers"
77
)
88

99
const (

ldservices/events_service_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"testing"
66

7-
"github.com/launchdarkly/go-test-helpers/httphelpers"
7+
"github.com/launchdarkly/go-test-helpers/v2/httphelpers"
88
"github.com/stretchr/testify/assert"
99
"github.com/stretchr/testify/require"
1010
)

ldservices/polling_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ldservices
33
import (
44
"net/http"
55

6-
"github.com/launchdarkly/go-test-helpers/httphelpers"
6+
"github.com/launchdarkly/go-test-helpers/v2/httphelpers"
77
)
88

99
const serverSideSDKPollingPath = "/sdk/latest-all"

ldservices/polling_service_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io/ioutil"
66
"testing"
77

8-
"github.com/launchdarkly/go-test-helpers/httphelpers"
8+
"github.com/launchdarkly/go-test-helpers/v2/httphelpers"
99
"github.com/stretchr/testify/assert"
1010
"github.com/stretchr/testify/require"
1111
)

ldservices/server_sdk_data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/launchdarkly/go-test-helpers/httphelpers"
7+
"github.com/launchdarkly/go-test-helpers/v2/httphelpers"
88
)
99

1010
// KeyedData is an interface for use with ServerSideData as an abstraction for data model objects that

ldservices/streaming_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ldservices
33
import (
44
"net/http"
55

6-
"github.com/launchdarkly/go-test-helpers/httphelpers"
6+
"github.com/launchdarkly/go-test-helpers/v2/httphelpers"
77
)
88

99
const (

ldservices/streaming_service_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/stretchr/testify/assert"
1111
"github.com/stretchr/testify/require"
1212

13-
helpers "github.com/launchdarkly/go-test-helpers"
14-
"github.com/launchdarkly/go-test-helpers/httphelpers"
13+
helpers "github.com/launchdarkly/go-test-helpers/v2"
14+
"github.com/launchdarkly/go-test-helpers/v2/httphelpers"
1515
)
1616

1717
func TestServerSideStreamingServiceHandler(t *testing.T) {

0 commit comments

Comments
 (0)