10000 Make sure the matches are done with === · mauricio/postgresql-async@682e2bf · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Commit 682e2bf

Browse files
committed
Make sure the matches are done with ===
1 parent 3b7151c commit 682e2bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgresql-async/src/test/scala/com/github/mauricio/async/db/postgresql/PreparedStatementSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ class PreparedStatementSpec extends Specification with DatabaseTestHelper {
251251
handler =>
252252
val string = "someString"
253253
val result = executePreparedStatement(handler, "SELECT CAST(? AS VARCHAR)", Array(string)).rows.get
254-
result(0)(0) == string
254+
result(0)(0) === string
255255
}
256256
}
257257

0 commit comments

Comments
 (0)
0