Skip to content

Commit 31f917c

Browse files
committed
gocheck imports update
1 parent e079f55 commit 31f917c

7 files changed

+7
-7
lines changed

format/format_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package format
33
import (
44
"testing"
55

6-
. "launchpad.net/gocheck"
6+
. "gopkg.in/check.v1"
77
)
88

99
func Test(t *testing.T) { TestingT(t) }

format/rfc3164_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package format
22

33
import (
4-
. "launchpad.net/gocheck"
4+
. "gopkg.in/check.v1"
55
)
66

77
func (s *FormatSuite) TestRFC3164_SingleSplit(c *C) {

format/rfc5424_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package format
22

33
import (
4-
. "launchpad.net/gocheck"
4+
. "gopkg.in/check.v1"
55
)
66

77
func (s *FormatSuite) TestRFC5424_SingleSplit(c *C) {

format/rfc6587_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"strings"
88

9-
. "launchpad.net/gocheck"
9+
. "gopkg.in/check.v1"
1010
)
1111

1212
func (s *FormatSuite) TestRFC6587_GetSplitFuncSingleSplit(c *C) {

handler_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package syslog
22

33
import (
44
"github.com/jeromer/syslogparser"
5-
. "launchpad.net/gocheck"
5+
. "gopkg.in/check.v1"
66
)
77

88
type HandlerSuite struct{}

server_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/jeromer/syslogparser"
11-
. "launchpad.net/gocheck"
11+
. "gopkg.in/check.v1"
1212
)
1313

1414
func Test(t *testing.T) { TestingT(t) }

servertls_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"io"
99
"time"
1010

11-
. "launchpad.net/gocheck"
11+
. "gopkg.in/check.v1"
1212
)
1313

1414
func getServerConfig() *tls.Config {

0 commit comments

Comments
 (0)