File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 164
164
BOOL success = NO ;
165
165
GTBranch *localTrackingBranch = [masterBranch trackingBranchWithError: &error success: &success];
166
166
expect (error).to (beNil ());
167
- expect (@(success)).to (beTrue ());
167
+ expect (@(success)).to (beTruthy ());
168
168
expect (@([localTrackingBranch numberOfCommitsWithError: NULL ])).to (equal (@3 ));
169
169
170
170
// Number of commits on remote before push
183
183
// Number of commits on tracking branch after push
184
184
localTrackingBranch = [masterBranch trackingBranchWithError: &error success: &success];
185
185
expect (error).to (beNil ());
186
- expect (@(success)).to (beTrue ());
186
+ expect (@(success)).to (beTruthy ());
187
187
expect (@([localTrackingBranch numberOfCommitsWithError: NULL ])).to (equal (@4 ));
188
188
189
189
// Refresh remote master branch to ensure the commit count is accurate
You can’t perform that action at this time.
0 commit comments