Skip to content

Commit c731a93

Browse files
committed
Fix test.
1 parent 0389ea8 commit c731a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegrationSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class PostgresIntegrationSuite extends DockerJDBCIntegrationSuite {
8181
assert(rows(0).getString(9) == "192.168.0.0/16")
8282
assert(rows(0).getSeq(10) == Seq(1, 2))
8383
assert(rows(0).getSeq(11) == Seq("a", null, "b"))
84-
assert(rows(0).getSeq(12) == Array(0.11, 0.22))
84+
assert(rows(0).getSeq(12)(0) == 0.11 && rows(0).getSeq(12)(1) == 0.22)
8585
}
8686

8787
test("Basic write test") {

0 commit comments

Comments
 (0)