@@ -87,9 +87,9 @@ public void CanFetchAllTagsIntoAnEmptyRepository(string url)
8787 }
8888
8989 // Perform the actual fetch
90- repo . Network . Fetch ( remote , new FetchOptions {
90+ repo . Network . Fetch ( remote , new FetchOptions {
9191 TagFetchMode = TagFetchMode . All ,
92- OnUpdateTips = expectedFetchState . RemoteUpdateTipsHandler
92+ OnUpdateTips = expectedFetchState . RemoteUpdateTipsHandler
9393 } ) ;
9494
9595 // Verify the expected
@@ -111,7 +111,7 @@ public void CanFetchCustomRefSpecsIntoAnEmptyRepository(string url, string local
111111 Remote remote = repo . Network . Remotes . Add ( remoteName , url ) ;
112112
113113 string refSpec = string . Format ( "refs/heads/{2}:refs/remotes/{0}/{1}" , remoteName , localBranchName , remoteBranchName ) ;
114-
114+
115115 // Set up structures for the expected results
116116 // and verifying the RemoteUpdateTips callback.
117117 TestRemoteInfo remoteInfo = TestRemoteInfo . TestRemoteInstance ;
@@ -121,7 +121,7 @@ public void CanFetchCustomRefSpecsIntoAnEmptyRepository(string url, string local
121121 // Perform the actual fetch
122122 repo . Network . Fetch ( remote , new string [ ] { refSpec } , new FetchOptions {
123123 TagFetchMode = TagFetchMode . None ,
124- OnUpdateTips = expectedFetchState . RemoteUpdateTipsHandler
124+ OnUpdateTips = expectedFetchState . RemoteUpdateTipsHandler
125125 } ) ;
126126
127127 // Verify the expected
0 commit comments