Skip to content

Commit

Permalink
Reflect move of gocheck.
Browse files Browse the repository at this point in the history
  • Loading branch information
Work on implementation section authored and Work on implementation section committed Apr 30, 2015
1 parent 80c65bb commit 1758ba2
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion builtins_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type BuiltinsSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion bytearray_builtins_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

Expand Down
2 changes: 1 addition & 1 deletion conscell_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type ConsCellSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package golisp

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

Expand Down
2 changes: 1 addition & 1 deletion eval_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type EvalSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion float_math_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package golisp

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

Expand Down
2 changes: 1 addition & 1 deletion float_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type FloatAtomSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion json_support_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type JsonLispSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion lisp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

Expand Down
2 changes: 1 addition & 1 deletion macros_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type MacrosSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion number_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type IntegerAtomSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion object_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

Expand Down
2 changes: 1 addition & 1 deletion parsing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

Expand Down
2 changes: 1 addition & 1 deletion printing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package golisp

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

Expand Down
2 changes: 1 addition & 1 deletion string_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type StringAtomSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion symbol_table_frame_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type SymbolTableFrameSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion tokenizer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type TokenizerSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion type_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type TypeSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package golisp

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

type UtilitySuite struct {
Expand Down

0 comments on commit 1758ba2

Please sign in to comment.