@@ -482,11 +482,11 @@ - (void)testFDLComponentsFactoryReturnsInstanceWithAllNilProperties {
482
482
483
483
- (void )testFDLComponentsCreatesSimplestLinkCorrectly {
484
484
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" ;
486
486
NSURL *link = [NSURL URLWithString: linkString];
487
487
488
488
NSString *expectedURLString =
489
- [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLDomain , endcodedLinkString ];
489
+ [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLDomain , encodedLinkString ];
490
490
NSURL *expectedURL = [NSURL URLWithString: expectedURLString];
491
491
492
492
FIRDynamicLinkComponents *components =
@@ -498,11 +498,11 @@ - (void)testFDLComponentsCreatesSimplestLinkCorrectly {
498
498
499
499
- (void )testFDLComponentsCustomDomainWithPath {
500
500
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" ;
502
502
NSURL *link = [NSURL URLWithString: linkString];
503
503
504
504
NSString *expectedURLString =
505
- [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLCustomDomain , endcodedLinkString ];
505
+ [NSString stringWithFormat: @" %@ /?link=%@ " , kFDLURLCustomDomain , encodedLinkString ];
506
506
NSURL *expectedURL = [NSURL URLWithString: expectedURLString];
507
507
508
508
FIRDynamicLinkComponents *components =
0 commit comments