Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cfilby committed Oct 16, 2019
1 parent c3930f5 commit e9730ab
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions graphql/id_test.go
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
package graphql

import (
"github.com/stretchr/testify/assert"
"testing"

"github.com/stretchr/testify/assert"
)

func TestMarshalID(t *testing.T) {
tests := []struct {
Name string
Input interface{}
Expected string
Name string
Input interface{}
Expected string
ShouldError bool
}{
{
Name: "int64",
Input: int64(12),
Expected: "12",
Name: "int64",
Input: int64(12),
Expected: "12",
ShouldError: false,
},
}
Expand Down

0 comments on commit e9730ab

Please sign in to comment.