From 09371f21d0e825091292aa6c17ac272fec8448a8 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 27 Feb 2021 10:28:45 -0600 Subject: [PATCH] Use JSON format compat with PG and CockroachDB --- stdlib/sql_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/sql_test.go b/stdlib/sql_test.go index ce1f64b3..a053c6cc 100644 --- a/stdlib/sql_test.go +++ b/stdlib/sql_test.go @@ -388,12 +388,12 @@ func TestConnQueryJSONIntoByteSlice(t *testing.T) { body json not null ); - insert into docs(body) values('{"foo":"bar"}'); + insert into docs(body) values('{"foo": "bar"}'); `) require.NoError(t, err) sql := `select * from docs` - expected := []byte(`{"foo":"bar"}`) + expected := []byte(`{"foo": "bar"}`) var actual []byte err = db.QueryRow(sql).Scan(&actual) @@ -424,7 +424,7 @@ func TestConnExecInsertByteSliceIntoJSON(t *testing.T) { `) require.NoError(t, err) - expected := []byte(`{"foo":"bar"}`) + expected := []byte(`{"foo": "bar"}`) _, err = db.Exec(`insert into docs(body) values($1)`, expected) require.NoError(t, err)