Skip to content

Commit e9f8874

Browse files
committed
Merge pull request #256 from libgit2/fix-10point7-build
Fix running the specs.
2 parents 26973e2 + 8a79beb commit e9f8874

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ObjectiveGitTests/GTTagSpec.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
GTRepository *repo = [GTRepository repositoryWithURL:[NSURL fileURLWithPath:TEST_REPO_PATH(self.class)] error:&error];
1818
NSString *tagSHA = @"0c37a5391bbff43c37f0d0371823a5509eed5b1d";
1919
tag = (GTTag *)[repo lookupObjectBySHA:tagSHA error:&error];
20-
expect(error).to.beFalsy;
21-
expect(tag).to.beTruthy;
20+
expect(error).to.beFalsy();
21+
expect(tag).to.beTruthy();
2222
expect(tagSHA).to.equal(tag.SHA);
2323
});
2424

0 commit comments

Comments
 (0)