@@ -88,7 +88,7 @@ public async Task ShouldAddAndCommitFiles()
88
88
RepositoryManager . WaitForEvents ( ) ;
89
89
repositoryManagerEvents . WaitForNotBusy ( ) ;
90
90
91
- repositoryManagerEvents . GitStatusUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
91
+ repositoryManagerEvents . GitStatusUpdated . WaitOne ( TimeSpan . FromSeconds ( 20 ) ) . Should ( ) . BeTrue ( ) ;
92
92
93
93
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
94
94
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
@@ -109,14 +109,15 @@ await RepositoryManager
109
109
RepositoryManager . WaitForEvents ( ) ;
110
110
repositoryManagerEvents . WaitForNotBusy ( ) ;
111
111
112
- repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
113
- repositoryManagerEvents . GitStatusUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
112
+ repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( TimeSpan . FromSeconds ( 20 ) ) . Should ( ) . BeTrue ( ) ;
113
+ repositoryManagerEvents . GitStatusUpdated . WaitOne ( TimeSpan . FromSeconds ( 20 ) ) . Should ( ) . BeTrue ( ) ;
114
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( TimeSpan . FromSeconds ( 20 ) ) . Should ( ) . BeTrue ( ) ;
114
115
115
116
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
116
117
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
117
118
repositoryManagerListener . Received ( ) . GitStatusUpdated ( Args . GitStatus ) ;
118
119
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
119
- repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
120
+ repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
120
121
repositoryManagerListener . Received ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
121
122
repositoryManagerListener . DidNotReceive ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
122
123
}
0 commit comments