diff --git a/graphql/id_test.go b/graphql/id_test.go index 217a1bb85f..e559b295f8 100644 --- a/graphql/id_test.go +++ b/graphql/id_test.go @@ -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, }, }