Skip to content

Commit

Permalink
pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
LouiseHsu committed Jul 16, 2024
1 parent e67c378 commit de16068
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import XCTest

@testable import in_app_purchase_storekit

class RequestHandlerTest: XCTestCase {
final class RequestHandlerTest: XCTestCase {

func testRequestHandlerWithProductRequestSuccess() {
let productIdentifiers = Set(["123"])
Expand All @@ -17,8 +17,8 @@ class RequestHandlerTest: XCTestCase {
let expectation = expectation(description: "Expect response with 1 product")
var response: SKProductsResponse?

handler.startProductRequest { r, error in
response = r
handler.startProductRequest { requestResponse, _ in
response = requestResponse
expectation.fulfill()
}

Expand Down

0 comments on commit de16068

Please sign in to comment.