File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 53
53
notBareRepo = self.bareFixtureRepository ;
54
54
expect (notBareRepo).notTo (beNil ());
55
55
// This repo is not really "bare" according to libgit2
56
- expect (@(notBareRepo.isBare )).to (beFalse ());
56
+ expect (@(notBareRepo.isBare )).to (beFalsy ());
57
57
});
58
58
59
59
describe (@" to remote" , ^{ // via local transport
141
141
}];
142
142
expect (error).to (beNil ());
143
143
expect (@(result)).to (beTruthy ());
144
- expect (@(transferProgressed)).to (beFalse ()); // Local transport doesn't currently call progress callbacks
144
+ expect (@(transferProgressed)).to (beFalsy ()); // Local transport doesn't currently call progress callbacks
145
145
146
146
// Same number of commits after push, refresh branch first
147
147
remoteMasterBranch = localBranchWithName (@" master" , remoteRepo);
178
178
}];
179
179
expect (error).to (beNil ());
180
180
expect (@(result)).to (beTruthy ());
181
- expect (@(transferProgressed)).to (beFalse ()); // Local transport doesn't currently call progress callbacks
181
+ expect (@(transferProgressed)).to (beFalsy ()); // Local transport doesn't currently call progress callbacks
182
182
183
183
// Number of commits on tracking branch after push
184
184
localTrackingBranch = [masterBranch trackingBranchWithError: &error success: &success];
You can’t perform that action at this time.
0 commit comments