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 5353 notBareRepo = self.bareFixtureRepository ;
5454 expect (notBareRepo).notTo (beNil ());
5555 // This repo is not really "bare" according to libgit2
56- expect (@(notBareRepo.isBare )).to (beFalse ());
56+ expect (@(notBareRepo.isBare )).to (beFalsy ());
5757 });
5858
5959 describe (@" to remote" , ^{ // via local transport
141141 }];
142142 expect (error).to (beNil ());
143143 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
145145
146146 // Same number of commits after push, refresh branch first
147147 remoteMasterBranch = localBranchWithName (@" master" , remoteRepo);
178178 }];
179179 expect (error).to (beNil ());
180180 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
182182
183183 // Number of commits on tracking branch after push
184184 localTrackingBranch = [masterBranch trackingBranchWithError: &error success: &success];
You can’t perform that action at this time.
0 commit comments