Skip to content

Commit

Permalink
fix(analytics): remove extra awaits on fulfills
Browse files Browse the repository at this point in the history
  • Loading branch information
atierian committed Oct 12, 2023
1 parent 8cbc7e9 commit f52f08c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ final class AnalyticsStressTests: XCTestCase {
"eventPropertyBoolKey5": true] as [String: AnalyticsPropertyValue]
let event = BasicAnalyticsEvent(name: "eventName" + String(eventNumber), properties: properties)
Amplify.Analytics.record(event: event)
await recordExpectation.fulfill()
recordExpectation.fulfill()
}
}

Expand Down

0 comments on commit f52f08c

Please sign in to comment.