From e9730ab90b17ca10ab85b866481f934ea5e957e8 Mon Sep 17 00:00:00 2001 From: Cooper Filby Date: Tue, 15 Oct 2019 21:36:49 -0500 Subject: [PATCH] gofmt --- graphql/id_test.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) 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, }, }