diff --git a/SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m b/SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m index 104b041..1b5a8d5 100644 --- a/SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m +++ b/SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m @@ -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]); diff --git a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m index 94c368e..304af66 100644 --- a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m +++ b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m @@ -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]]; }