Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
morisgateno-appsflyer committed Jun 16, 2024
1 parent 9725104 commit 266e296
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ - (void)testSEGAppsFlyerIntegration_onConversionDataSuccess_happyflow{
return YES;
}]]);
OCMStub([SEGAnalyticsMock track:[OCMArg checkWithBlock:^BOOL(id obj) {
XCTAssertTrue([obj isEqual:@"GCD-Success"]);
XCTAssertTrue([obj isEqual:@"Install Attributed"]);
return YES;
}] properties:[OCMArg checkWithBlock:^BOOL(id obj) {
XCTAssertTrue([obj isEqualToDictionary:dictionaryInputToAnalytics]);
Expand Down
2 changes: 1 addition & 1 deletion segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ - (void)onConversionDataSuccess:(nonnull NSDictionary *)conversionInfo {
// If you are working with networks that don't allow passing user level data to 3rd parties,
// you will need to apply code to filter out these networks before calling
// `[self.analytics track:@"Install Attributed" properties:[properties copy]];`
[self.analytics track:@"GCD-Success" properties: [properties copy]];
[self.analytics track:@"Install Attributed" properties: [properties copy]];


}
Expand Down

0 comments on commit 266e296

Please sign in to comment.