Skip to content

Commit ff601a6

Browse files
committed
Tabs
1 parent 31b39c7 commit ff601a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ObjectiveGitTests/GTRepository+PullSpec.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
expect(@(uniqueLocalCommits.count)).to(equal(@1));
219219

220220
// Pull
221-
__block BOOL transferProgressed = NO;
221+
__block BOOL transferProgressed = NO;
222222
BOOL result = [localRepo pullBranch:masterBranch fromRemote:remote withOptions:nil error:&error progress:^(const git_transfer_progress *progress, BOOL *stop) {
223223
transferProgressed = YES;
224224
}];
@@ -245,9 +245,9 @@
245245
GTCommit *localCommit = createCommitInRepository(@"Local commit", [@"TestLocal" dataUsingEncoding:NSUTF8StringEncoding], @"test.txt", localRepo);
246246
expect(localCommit).notTo(beNil());
247247
GTCommit *remoteCommit = createCommitInRepository(@"Upstream commit", [@"TestUpstream" dataUsingEncoding:NSUTF8StringEncoding], @"test.txt", remoteRepo);
248-
expect(remoteCommit).notTo(beNil());
248+
expect(remoteCommit).notTo(beNil());
249249

250-
GTBranch *masterBranch = localBranchWithName(@"master", localRepo);
250+
GTBranch *masterBranch = localBranchWithName(@"master", localRepo);
251251

252252
// Pull
253253
__block BOOL transferProgressed = NO;

0 commit comments

Comments
 (0)