File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -830,7 +830,7 @@ public void CanIdentifyReferenceKind()
830830 using ( var repo = new Repository ( path ) )
831831 {
832832 Assert . True ( repo . Refs [ "refs/heads/master" ] . IsLocalBranch ) ;
833- Assert . True ( repo . Refs [ "refs/remotes/origin/master" ] . IsRemoteTrackingBranch ( ) ) ;
833+ Assert . True ( repo . Refs [ "refs/remotes/origin/master" ] . IsRemoteTrackingBranch ) ;
834834 Assert . True ( repo . Refs [ "refs/tags/lw" ] . IsTag ( ) ) ;
835835 }
836836
Original file line number Diff line number Diff line change @@ -96,9 +96,9 @@ public virtual bool IsLocalBranch
9696 /// Determine if the current <see cref="Reference"/> is a remote tracking branch.
9797 /// </summary>
9898 /// <returns>true if the current <see cref="Reference"/> is a remote tracking branch, false otherwise.</returns>
99- public virtual bool IsRemoteTrackingBranch ( )
99+ public virtual bool IsRemoteTrackingBranch
100100 {
101- return CanonicalName . LooksLikeRemoteTrackingBranch ( ) ;
101+ get { return CanonicalName . LooksLikeRemoteTrackingBranch ( ) ; }
102102 }
103103
104104 /// <summary>
You can’t perform that action at this time.
0 commit comments