diff --git a/composite_fields_test.go b/composite_fields_test.go index dc4d4c2..8607329 100644 --- a/composite_fields_test.go +++ b/composite_fields_test.go @@ -152,7 +152,7 @@ func TestCompositeFieldsEncode(t *testing.T) { create type cf_encode as ( a text, - b int4, + b int4, c text, d float8, e text diff --git a/composite_type_test.go b/composite_type_test.go index 2349a67..0f079de 100644 --- a/composite_type_test.go +++ b/composite_type_test.go @@ -167,7 +167,7 @@ func TestCompositeTypeTranscode(t *testing.T) { create type ct_test as ( a text, - b int4 + b int4 );`) require.NoError(t, err) defer conn.Exec(context.Background(), "drop type ct_test")