Skip to content

Commit

Permalink
Merge pull request #868 from MarathonLabs/fix/ios
Browse files Browse the repository at this point in the history
fix(ios): use extracted application for test bundle
  • Loading branch information
Malinskiy authored Nov 23, 2023
2 parents 6ce8941 + 8db99ee commit 6cd0e3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class NmTestParser(
}


val testBundle = AppleTestBundle(vendorConfiguration.bundle?.application, xctest)
val testBundle = AppleTestBundle(vendorConfiguration.bundle?.app, xctest)
swiftTests.forEach { testBundleIdentifier.put(it, testBundle) }
objectiveCTests.forEach { testBundleIdentifier.put(it, testBundle) }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class XCTestParser(
}
}

val testBundle = AppleTestBundle(vendorConfiguration.bundle?.application, xctest)
val testBundle = AppleTestBundle(vendorConfiguration.bundle?.app, xctest)
val result = tests.toList()
result.forEach { testBundleIdentifier.put(it, testBundle) }

Expand Down

0 comments on commit 6cd0e3f

Please sign in to comment.