@@ -27,7 +27,7 @@ public virtual void OnExit()
2727 protected static User CreateOctokitUser ( string login = "login" , string url = "https://url" )
2828 {
2929 return new User ( "https://url" , "bio" , "blog" , 1 , "GitHub" ,
30- DateTimeOffset . UtcNow , 0 , "email" , 100 , 100 , true , url ,
30+ DateTimeOffset . UtcNow , DateTimeOffset . UtcNow , 0 , "email" , 100 , 100 , true , url ,
3131 10 , 42 , "location" , login , "name" , 1 , new Plan ( ) ,
3232 1 , 1 , 1 , "https://url" , new RepositoryPermissions ( true , true , true ) ,
3333 false , null , null ) ;
@@ -46,7 +46,7 @@ protected static Repository CreateRepository(string owner, string name, string d
4646 id , CreateOctokitUser ( owner ) ,
4747 name , "fullname" , "description" , notCloneUrl , "c#" , false , parent != null , 0 , 0 , "master" ,
4848 0 , DateTimeOffset . UtcNow , DateTimeOffset . UtcNow , DateTimeOffset . UtcNow ,
49- new RepositoryPermissions ( ) , parent , null , true , false , false , false , 0 , 0 , null , null , null ) ;
49+ new RepositoryPermissions ( ) , parent , null , null , true , false , false , false , 0 , 0 , null , null , null ) ;
5050 }
5151
5252 protected static PullRequest CreatePullRequest ( User user , int id , ItemState state , string title ,
@@ -58,18 +58,18 @@ protected static PullRequest CreatePullRequest(User user, int id, ItemState stat
5858 1 , user , "Repo" , "Repo" , string . Empty , string . Empty , string . Empty ,
5959 false , false , 0 , 0 , "master" ,
6060 0 , null , createdAt , updatedAt ,
61- null , null , null ,
61+ null , null , null , null ,
6262 false , false , false ,
6363 false , 0 , 0 ,
6464 null , null , null ) ;
65- return new PullRequest ( 0 , uri , uri , uri , uri , uri , uri ,
65+ return new PullRequest ( 0 , uris , uris , uris , uris , uris , uris ,
6666 id , state , title , "" , createdAt , updatedAt ,
6767 null , null ,
6868 new GitReference ( uri . ToString ( ) , "foo:bar" , "bar" , "123" , user , repo ) ,
6969 new GitReference ( uri . ToString ( ) , "foo:baz" , "baz" , "123" , user , repo ) ,
70- user , null , null , false , null ,
71- commentCount , reviewCommentCount , 0 , 0 , 0 , 0 ,
72- null , false ) ;
70+ user , null , null , false , null , null , null ,
71+ commentCount , 0 , 0 , 0 , 0 ,
72+ null , false , null ) ;
7373 }
7474
7575 protected class TempDirectory : IDisposable
0 commit comments