test/type-coercion: fix typo in test title (#3237)

`timestamptz` was written `timestampz`

Co-authored-by: alxndrsn <alxndrsn>
This commit is contained in:
Alex Anderson 2024-06-05 18:50:16 +03:00 committed by GitHub
parent ba07d19459
commit 6e96e45bae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -141,7 +141,7 @@ types.forEach(function (type) {
testForTypeCoercion(type)
})
suite.test('timestampz round trip', function (cb) {
suite.test('timestamptz round trip', function (cb) {
var now = new Date()
var client = helper.client()
client.query('create temp table date_tests(name varchar(10), tstz timestamptz(3))')