Skip to content

Commit 5638632

Browse files
moigagoo#159 fixed case-sensitive test error
On linux, databases tend to be case-sensitive with their tests. This test failed in part because the column is `userId` not `userid`
1 parent 44af681 commit 5638632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/postgres/tfkpragma.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ suite "``fk`` pragma":
7070
for inpCustomer in inpCustomers.mitems:
7171
dbConn.insert inpCustomer
7272

73-
dbConn.select(outCustomers, """"userid" = $1""", userA.id)
73+
dbConn.select(outCustomers, """"userId" = $1""", userA.id)
7474

7575
check outCustomers === inpCustomers[0..^2]

0 commit comments

Comments
 (0)