diff --git a/shell/platform/darwin/ios/framework/Source/FlutterAppDelegateTest.mm b/shell/platform/darwin/ios/framework/Source/FlutterAppDelegateTest.mm index 9c275da9e955a..0fcf126be9df5 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterAppDelegateTest.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterAppDelegateTest.mm @@ -18,8 +18,7 @@ @interface FlutterAppDelegateTest : XCTestCase @implementation FlutterAppDelegateTest -// TODO(dnfield): https://github.com/flutter/flutter/issues/74267 -- (void)skip_testLaunchUrl { +- (void)testLaunchUrl { FlutterAppDelegate* appDelegate = [[FlutterAppDelegate alloc] init]; FlutterViewController* viewController = OCMClassMock([FlutterViewController class]); FlutterEngine* engine = OCMClassMock([FlutterEngine class]); @@ -42,7 +41,7 @@ - (void)skip_testLaunchUrl { OCMVerify([navigationChannel invokeMethod:@"pushRoute" arguments:@"/custom/route?query=test"]); } -- (void)skip_testLaunchUrlWithQueryParameterAndFragment { +- (void)testLaunchUrlWithQueryParameterAndFragment { FlutterAppDelegate* appDelegate = [[FlutterAppDelegate alloc] init]; FlutterViewController* viewController = OCMClassMock([FlutterViewController class]); FlutterEngine* engine = OCMClassMock([FlutterEngine class]); @@ -66,7 +65,7 @@ - (void)skip_testLaunchUrlWithQueryParameterAndFragment { arguments:@"/custom/route?query=test#fragment"]); } -- (void)skip_testLaunchUrlWithFragmentNoQueryParameter { +- (void)testLaunchUrlWithFragmentNoQueryParameter { FlutterAppDelegate* appDelegate = [[FlutterAppDelegate alloc] init]; FlutterViewController* viewController = OCMClassMock([FlutterViewController class]); FlutterEngine* engine = OCMClassMock([FlutterEngine class]);