Skip to content

Commit

Permalink
fix(ios): use extracted application for test bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
Malinskiy committed Nov 23, 2023
1 parent 8486978 commit 6d05e2d
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 6d05e2d

Please sign in to comment.