Skip to content

Commit

Permalink
launchpad.net/gocheck -> gopkg.in/check.v1
Browse files Browse the repository at this point in the history
  • Loading branch information
tysonmote committed Apr 10, 2024
1 parent 237f44f commit a0284a9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
5 changes: 1 addition & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ module github.com/tysonmote/gommap

go 1.17

require (
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
launchpad.net/gocheck v0.0.0-20140225173054-000000000087
)
require gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c

require (
github.com/kr/pretty v0.2.1 // indirect
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,3 @@ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
launchpad.net/gocheck v0.0.0-20140225173054-000000000087 h1:Izowp2XBH6Ya6rv+hqbceQyw/gSGoXfH/UPoTGduL54=
launchpad.net/gocheck v0.0.0-20140225173054-000000000087/go.mod h1:hj7XX3B/0A+80Vse0e+BUHsHMTEhd0O4cpUHr/e/BUM=
2 changes: 1 addition & 1 deletion gommap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"syscall"
"testing"

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

func TestAll(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion gommap_twopage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"path"

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

func (s *S) TestIsResidentTwoPages(c *C) {
Expand Down

0 comments on commit a0284a9

Please sign in to comment.