Skip to content

Commit

Permalink
Fix compile errors on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
keeshux committed Dec 18, 2024
1 parent 34b20ad commit 810b8e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ extension IAPManagerTests {
#else
await reader.setReceipt(withBuild: defaultBuildNumber, products: [.Full.OneTime.iOS, .Features.networkSettings])
await sut.reloadReceipt()
XCTAssertTrue(sut.isEligible(for: AppFeature.fullFeatures))
XCTAssertTrue(sut.isEligible(for: AppFeature.fullV2Features))
#endif
}

Expand All @@ -231,7 +231,7 @@ extension IAPManagerTests {
#else
await reader.setReceipt(withBuild: defaultBuildNumber, products: [.Full.OneTime.macOS, .Features.networkSettings])
await sut.reloadReceipt()
XCTAssertFalse(sut.isEligible(for: AppFeature.fullFeatures))
XCTAssertFalse(sut.isEligible(for: AppFeature.fullV2Features))
#endif
}

Expand Down

0 comments on commit 810b8e4

Please sign in to comment.