Skip to content

Commit 295ac4f

Browse files
committed
Enable all tests again
1 parent 8154e1e commit 295ac4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -831,12 +831,12 @@ t('bigint is returned as BigInt', async() => [
831831
typeof (await sql`select 9223372036854777 as x`)[0].x
832832
])
833833

834-
ot('int is returned as Number', async() => [
834+
t('int is returned as Number', async() => [
835835
'number',
836836
typeof (await sql`select 123 as x`)[0].x
837837
])
838838

839-
ot('numeric is returned as string', async() => [
839+
t('numeric is returned as string', async() => [
840840
'string',
841841
typeof (await sql`select 1.2 as x`)[0].x
842842
])

0 commit comments

Comments
 (0)