File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -515,13 +515,13 @@ - (void)testHandleHashedEmailOtherOverride {
515515- (void )testHandleHashedEmailHashedOverride {
516516 NSMutableDictionary <NSString *, NSString *> *passedAttributes = [[NSMutableDictionary alloc ] init ];
517517 [passedAttributes setObject: @" foo@gmail.com" forKey: @" email" ];
518- [passedAttributes setObject: @" test@gmail.com " forKey: @" other" ];
518+ [passedAttributes setObject: @" foo-value " forKey: @" other" ];
519519 [passedAttributes setObject: @" test2@gmail.com" forKey: @" emailsha256" ];
520520
521521 [MPKitRokt handleHashedEmail: passedAttributes];
522522
523523 XCTAssertNil (passedAttributes[@" email" ]);
524- XCTAssertEqualObjects (passedAttributes[@" other" ], @" test@gmail.com " );
524+ XCTAssertEqualObjects (passedAttributes[@" other" ], @" foo-value " );
525525 XCTAssertEqualObjects (passedAttributes[@" emailsha256" ], @" test2@gmail.com" );
526526 XCTAssertTrue (passedAttributes.allKeys .count == 2 );
527527}
You can’t perform that action at this time.
0 commit comments