simplify test

pull/2213/head
Kostas Stamatakis 2024-12-30 23:15:46 +02:00
parent 2190a8e0d1
commit 61a0227241
No known key found for this signature in database
GPG Key ID: A0A88AF285F7E69B
1 changed files with 1 additions and 6 deletions

View File

@ -68,12 +68,7 @@ func TestJSONCodec(t *testing.T) {
{Issue2146(7), new(*Issue2146), isPtrExpectedEq(Issue2146(7))},
// Test driver.Scanner without pointer receiver (https://github.com/jackc/pgx/issues/2204)
{NonPointerJSONScanner{V: stringPtr("{}")}, NonPointerJSONScanner{V: &str}, func(a any) bool {
if n, is := a.(NonPointerJSONScanner); is {
return *n.V == "{}"
}
return false
}},
{NonPointerJSONScanner{V: stringPtr("{}")}, NonPointerJSONScanner{V: &str}, func(a any) bool { return str == "{}" }},
})
pgxtest.RunValueRoundTripTests(context.Background(), t, defaultConnTestRunner, pgxtest.KnownOIDQueryExecModes, "json", []pgxtest.ValueRoundTripTest{