@@ -482,11 +482,11 @@ - (void)testFDLComponentsFactoryReturnsInstanceWithAllNilProperties {
482482
483483- (void )testFDLComponentsCreatesSimplestLinkCorrectly {
484484 NSString *linkString = @" https://google.com" ;
485- NSString *endcodedLinkString = @" https%3A%2F%2F google%2E com" ;
485+ NSString *encodedLinkString = @" https%3A%2F%2F google%2E com" ;
486486 NSURL *link = [NSURL URLWithString: linkString];
487487
488488 NSString *expectedURLString =
489- [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLDomain , endcodedLinkString ];
489+ [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLDomain , encodedLinkString ];
490490 NSURL *expectedURL = [NSURL URLWithString: expectedURLString];
491491
492492 FIRDynamicLinkComponents *components =
@@ -498,11 +498,11 @@ - (void)testFDLComponentsCreatesSimplestLinkCorrectly {
498498
499499- (void )testFDLComponentsCustomDomainWithPath {
500500 NSString *linkString = @" https://google.com" ;
501- NSString *endcodedLinkString = @" https%3A%2F%2F google%2E com" ;
501+ NSString *encodedLinkString = @" https%3A%2F%2F google%2E com" ;
502502 NSURL *link = [NSURL URLWithString: linkString];
503503
504504 NSString *expectedURLString =
505- [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLCustomDomain , endcodedLinkString ];
505+ [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLCustomDomain , encodedLinkString ];
506506 NSURL *expectedURL = [NSURL URLWithString: expectedURLString];
507507
508508 FIRDynamicLinkComponents *components =
0 commit comments