Skip to content

Commit

Permalink
gocheck imports update
Browse files Browse the repository at this point in the history
  • Loading branch information
mcuadros committed Mar 3, 2016
1 parent e079f55 commit 31f917c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion format/format_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package format
import (
"testing"

. "launchpad.net/gocheck"
. "gopkg.in/check.v1"
)

func Test(t *testing.T) { TestingT(t) }
Expand Down
2 changes: 1 addition & 1 deletion format/rfc3164_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package format

import (
. "launchpad.net/gocheck"
. "gopkg.in/check.v1"
)

func (s *FormatSuite) TestRFC3164_SingleSplit(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion format/rfc5424_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package format

import (
. "launchpad.net/gocheck"
. "gopkg.in/check.v1"
)

func (s *FormatSuite) TestRFC5424_SingleSplit(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion format/rfc6587_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"strings"

. "launchpad.net/gocheck"
. "gopkg.in/check.v1"
)

func (s *FormatSuite) TestRFC6587_GetSplitFuncSingleSplit(c *C) {
Expand Down
2 changes: 1 addition & 1 deletion handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package syslog

import (
"github.com/jeromer/syslogparser"
. "launchpad.net/gocheck"
. "gopkg.in/check.v1"
)

type HandlerSuite struct{}
Expand Down
2 changes: 1 addition & 1 deletion server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/jeromer/syslogparser"
. "launchpad.net/gocheck"
. "gopkg.in/check.v1"
)

func Test(t *testing.T) { TestingT(t) }
Expand Down
2 changes: 1 addition & 1 deletion servertls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"io"
"time"

. "launchpad.net/gocheck"
. "gopkg.in/check.v1"
)

func getServerConfig() *tls.Config {
Expand Down

0 comments on commit 31f917c

Please sign in to comment.