Skip to content

Commit a6f6c58

Browse files
committed
transferProgressed now expected to work
1 parent 2bbf020 commit a6f6c58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ObjectiveGitTests/GTRemotePushSpec.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
}];
116116
expect(error).to(beNil());
117117
expect(@(result)).to(beTruthy());
118-
expect(@(transferProgressed)).to(beFalsy()); // Local transport doesn't currently call progress callbacks
118+
expect(@(transferProgressed)).to(beTruthy());
119119

120120
// Same number of commits after push, refresh branch first
121121
remoteMasterBranch = localBranchWithName(@"master", remoteRepo);
@@ -152,7 +152,7 @@
152152
}];
153153
expect(error).to(beNil());
154154
expect(@(result)).to(beTruthy());
155-
expect(@(transferProgressed)).to(beFalsy()); // Local transport doesn't currently call progress callbacks
155+
expect(@(transferProgressed)).to(beTruthy());
156156

157157
// Number of commits on tracking branch after push
158158
localTrackingBranch = [masterBranch trackingBranchWithError:&error success:&success];

0 commit comments

Comments
 (0)