diff --git a/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h b/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h index b155e03dd..15260d6d9 100644 --- a/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h +++ b/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h @@ -135,7 +135,7 @@ SEL selector = NSSelectorFromString(dartTestName); \ class_addMethod(self, selector, implementation, "v@:"); \ \ - /* Step 2 – create invocations to the dynamically created methods */ \ + /* Step 2 – create invocations to the dynamically created methods */ \ NSMethodSignature *signature = [self instanceMethodSignatureForSelector:selector]; \ NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature]; \ invocation.selector = selector; \ diff --git a/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h b/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h index ae0e5bff3..c51563d76 100644 --- a/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h +++ b/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h @@ -110,7 +110,7 @@ SEL selector = NSSelectorFromString(dartTestName); \ class_addMethod(self, selector, implementation, "v@:"); \ \ - /* Step 2 – create invocations to the dynamically created methods */ \ + /* Step 2 – create invocations to the dynamically created methods */ \ NSMethodSignature *signature = [self instanceMethodSignatureForSelector:selector]; \ NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature]; \ invocation.selector = selector; \