Skip to content

Commit

Permalink
Update TestPlan constructor to honor 5.8.0 change
Browse files Browse the repository at this point in the history
  • Loading branch information
mannodermaus committed Sep 17, 2021
1 parent 191c384 commit bc67ebe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ internal class AndroidJUnitPlatformTestTree(
/**
* Custom drop-in TestPlan for Android purposes.
*/
private class ModifiedTestPlan(val delegate: TestPlan) : TestPlan(delegate.containsTests()) {
private class ModifiedTestPlan(val delegate: TestPlan) : TestPlan(delegate.containsTests(), delegate.configurationParameters) {

fun getRealParent(child: TestIdentifier?): Optional<TestIdentifier> {
// Because the overridden "getParent()" from the superclass is modified,
Expand Down

0 comments on commit bc67ebe

Please sign in to comment.