Skip to content

Commit

Permalink
fix: fixit for format
Browse files Browse the repository at this point in the history
  • Loading branch information
armcknight committed Jul 6, 2022
1 parent 52c46f4 commit 5ead763
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ + (BOOL)addInstanceMethodWithSelectorName:(NSString *)selectorName block:(void (
+ (void)initialize {
allResults = [NSMutableArray array];
for (NSUInteger i = 0; i < SentrySDKPerformanceBenchmarkTestCases; i++) {
[self addInstanceMethodWithSelectorName:[NSString stringWithFormat:@"testCPUBenchmark%d", i] block:^(XCTestCase *testCase) {
[self addInstanceMethodWithSelectorName:[NSString stringWithFormat:@"testCPUBenchmark%lu", (unsigned long)i] block:^(XCTestCase *testCase) {
[allResults addObjectsFromArray:[self _testCPUBenchmark]];
}];
}
Expand Down

0 comments on commit 5ead763

Please sign in to comment.