Skip to content

Commit 067f66f

Browse files
committed
Minor reformatting
1 parent 5ef4ff5 commit 067f66f

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Tests/Tests/AFURLSessionManagerTests.m

+5-7
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,19 @@
2525
#import "AFURLSessionManager.h"
2626

2727
@interface AFURLSessionManagerTests : AFTestCase
28-
@property (nonatomic) AFURLSessionManager *manager;
28+
@property (readwrite, nonatomic, strong) AFURLSessionManager *manager;
2929
@end
3030

3131
@implementation AFURLSessionManagerTests
3232

33-
- (void)setUp
34-
{
33+
- (void)setUp {
3534
[super setUp];
3635
self.manager = [[AFURLSessionManager alloc] init];
3736
}
3837

38+
#pragma mark -
3939

40-
- (void)testUploadTasksProgressBecomesPartOfCurrentProgress
41-
{
40+
- (void)testUploadTasksProgressBecomesPartOfCurrentProgress {
4241
NSProgress *overallProgress = [NSProgress progressWithTotalUnitCount:100];
4342

4443
[overallProgress becomeCurrentWithPendingUnitCount:80];
@@ -59,8 +58,7 @@ - (void)testUploadTasksProgressBecomesPartOfCurrentProgress
5958
expect(overallProgress.fractionCompleted).to.equal(0.8);
6059
}
6160

62-
- (void)testDownloadTasksProgressBecomesPartOfCurrentProgress
63-
{
61+
- (void)testDownloadTasksProgressBecomesPartOfCurrentProgress {
6462
NSProgress *overallProgress = [NSProgress progressWithTotalUnitCount:100];
6563

6664
[overallProgress becomeCurrentWithPendingUnitCount:80];

0 commit comments

Comments
 (0)