Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
lunemec committed Apr 22, 2020
1 parent 4e86560 commit ff579f9
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package as_test
import (
"fmt"

"as"
"github.com/lunemec/as"
)

func Example() {
Expand Down
2 changes: 1 addition & 1 deletion int16_32b_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"math"
"testing"

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

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

"as"
"github.com/lunemec/as"
)

func TestUint(t *testing.T) {
Expand Down

0 comments on commit ff579f9

Please sign in to comment.