Skip to content

Commit

Permalink
Fix testCanRelocateIncludedSourceFile and testCanRelocateIncludedSour…
Browse files Browse the repository at this point in the history
…ceFileWithRegex
  • Loading branch information
Goooler committed Dec 9, 2024
1 parent 7d85cfe commit 0778c4b
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ class SimpleRelocatorTest {
@Test
fun testCanRelocateIncludedSourceFile() {
val relocator = SimpleRelocator(
"org.foo",
includes = listOf("org/apache/iceberg/spark/parquet/**", "org/apache/spark/sql/execution/datasources/parquet/**"),
)
assertThat(relocator.canRelocatePath("org/apache/iceberg/spark/parquet/SparkNativeParquet.class")).isTrue()
Expand All @@ -259,7 +258,6 @@ class SimpleRelocatorTest {
@Test
fun testCanRelocateIncludedSourceFileWithRegex() {
val relocator = SimpleRelocator(
"org.foo",
includes = listOf("%regex[org/apache/iceberg/.*]", "%regex[org/apache/spark/.*]"),
)
assertThat(relocator.canRelocatePath("org/apache/iceberg/spark/parquet/SparkNativeParquet.class")).isTrue()
Expand Down

0 comments on commit 0778c4b

Please sign in to comment.