Skip to content

Commit

Permalink
Fix tests after rebasing with master
Browse files Browse the repository at this point in the history
EnricoMi committed Mar 1, 2023
1 parent 107a757 commit 9771957
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -160,7 +160,7 @@ class TestEdgeSource extends AnyFunSpec with ShuffleExchangeTests
Partition(targets).has(Set.empty, Set("director", "starring")).getAll
)

assert(partitions === expected)
assert(partitions.toSet === expected)
}

it("should partition data") {
Original file line number Diff line number Diff line change
@@ -444,7 +444,7 @@ class TestTriplesSource extends AnyFunSpec with ShuffleExchangeTests
case p: DataSourceRDDPartition => p.inputPartitions
case _ => None
}
assert(partitions.toSet === Seq(Partition(targets).has(predicates).getAll.langs(Set("title"))))
assert(partitions === Seq(Partition(targets).has(predicates).langs(Set("title")).getAll))
}

it("should load as predicate partitions") {

0 comments on commit 9771957

Please sign in to comment.