Skip to content

Commit

Permalink
toSeq fix for scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
abellina committed Jan 12, 2024
1 parent fbdf6d1 commit 9cc7f8e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,8 @@ class GpuGenerateSuite

withResource(results) { _ =>
withResource(results.map(GpuColumnVector.from)) { resultTbls =>
withResource(Table.concatenate(resultTbls: _*)) { res =>
// toSeq is required for scala 2.13 here
withResource(Table.concatenate(resultTbls.toSeq: _*)) { res =>
withResource(GpuColumnVector.from(expectedExploded)) { expectedTbl =>
TestUtils.compareTables(expectedTbl, res)
}
Expand Down

0 comments on commit 9cc7f8e

Please sign in to comment.