From 0cd7c757c392e505c47d4d56ff29524880fd9b5f Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Tue, 22 Mar 2022 19:23:40 -0500 Subject: [PATCH] Fix skipped test --- values_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/values_test.go b/values_test.go index f036b8a6..d728edab 100644 --- a/values_test.go +++ b/values_test.go @@ -1036,7 +1036,6 @@ order by a nulls first } func TestScanIntoByteSlice(t *testing.T) { - t.Skip("TODO - unskip later in v5") t.Parallel() conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE")) @@ -1070,7 +1069,7 @@ func TestScanIntoByteSlice(t *testing.T) { sql string err string }{ - {"int binary", "select 42", "can't scan into dest[0]: cannot assign 42 into *[]uint8"}, + {"int binary", "select 42", "can't scan into dest[0]: cannot scan OID 23 in binary format into *[]uint8"}, } { t.Run(tt.name, func(t *testing.T) { var buf []byte