Skip to content

Commit

Permalink
correct message
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Palao committed Aug 29, 2021
1 parent a61f526 commit 2b5ab79
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ios/test/harness/OutputViewController.m
Expand Up @@ -46,7 +46,7 @@ - (void) viewDidLoad
self.scriptPath = [NSMutableString stringWithFormat:@"%@/t/harness", [self applicationDocumentsDirectory]];
[self startPerlScript];

_timer = [NSTimer scheduledTimerWithTimeInterval:.2
_timer = [NSTimer scheduledTimerWithTimeInterval:.5
target:self
selector:@selector(updateOutputTextView)
userInfo:nil
Expand Down Expand Up @@ -134,8 +134,8 @@ - (NSString *) boilerplateString
{
return [NSString stringWithFormat: @"Running on iOS: %@\nBundle: %@\nDocuments: %@\n",
[[UIDevice currentDevice] systemVersion],
[self applicationDocumentsDirectory],
self.bundlePath
self.bundlePath,
[self applicationDocumentsDirectory]
];
}

Expand Down Expand Up @@ -194,7 +194,6 @@ - (void) updateOutputTextView
[[self outputTextView] setAttributedText: [self outputText]];
}
[[self outputTextView] scrollRangeToVisible: NSMakeRange( [[self outputTextView].text length], 0 )];

}];
}

Expand Down

0 comments on commit 2b5ab79

Please sign in to comment.