Skip to content

Commit

Permalink
Update tests/src/test/scala/com/nvidia/spark/rapids/unit/StringRepeat…
Browse files Browse the repository at this point in the history
…UnitTest.scala

Co-authored-by: Jason Lowe <jlowe@nvidia.com>
  • Loading branch information
ttnghia and jlowe authored Aug 4, 2021
1 parent b19c869 commit 68fb470
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class StringRepeatUnitTest extends GpuUnitTests {
withResource(GpuScalar(null, DataTypes.StringType)) { nullStr =>
withResource(GpuStringRepeat(null, null).doColumnar(nullStr, intGpuColumn)) { result =>
assertResult(intGpuColumn.getRowCount)(result.getRowCount)
assertResult(result.getNullCount)(result.getRowCount)
assertResult(result.getRowCount)(result.getNullCount)
}
}
}
Expand Down

0 comments on commit 68fb470

Please sign in to comment.