@@ -40,13 +40,14 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
40
40
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
41
41
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
42
42
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
43
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
43
44
44
45
repositoryManagerListener . DidNotReceive ( ) . OnIsBusyChanged ( Args . Bool ) ;
45
46
repositoryManagerListener . Received ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
46
47
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
47
48
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
48
49
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
49
- repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
50
+ repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
50
51
repositoryManagerListener . Received ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
51
52
repositoryManagerListener . Received ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
52
53
}
@@ -73,6 +74,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
73
74
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
74
75
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
75
76
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
77
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
76
78
77
79
repositoryManagerListener . ClearReceivedCalls ( ) ;
78
80
repositoryManagerEvents . Reset ( ) ;
@@ -86,14 +88,13 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
86
88
repositoryManagerEvents . WaitForNotBusy ( ) ;
87
89
88
90
repositoryManagerEvents . GitStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
89
- repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
90
91
91
92
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
92
93
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
93
94
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
94
95
repositoryManagerListener . Received ( ) . GitStatusUpdated ( Args . GitStatus ) ;
95
96
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
96
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
97
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
97
98
repositoryManagerListener . DidNotReceive ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
98
99
repositoryManagerListener . DidNotReceive ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
99
100
}
@@ -120,6 +121,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
120
121
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
121
122
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
122
123
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
124
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
123
125
124
126
repositoryManagerListener . ClearReceivedCalls ( ) ;
125
127
repositoryManagerEvents . Reset ( ) ;
@@ -142,7 +144,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
142
144
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
143
145
repositoryManagerListener . Received ( ) . GitStatusUpdated ( Args . GitStatus ) ;
144
146
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
145
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
147
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
146
148
repositoryManagerListener . DidNotReceive ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
147
149
repositoryManagerListener . DidNotReceive ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
148
150
@@ -193,6 +195,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
193
195
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
194
196
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
195
197
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
198
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
196
199
197
200
repositoryManagerListener . ClearReceivedCalls ( ) ;
198
201
repositoryManagerEvents . Reset ( ) ;
@@ -208,15 +211,14 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
208
211
RepositoryManager . WaitForEvents ( ) ;
209
212
repositoryManagerEvents . WaitForNotBusy ( ) ;
210
213
211
- repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
212
214
repositoryManagerEvents . GitStatusUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
213
215
214
216
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
215
217
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
216
218
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
217
219
repositoryManagerListener . Received ( ) . GitStatusUpdated ( Args . GitStatus ) ;
218
220
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
219
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
221
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
220
222
repositoryManagerListener . DidNotReceive ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
221
223
repositoryManagerListener . DidNotReceive ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
222
224
@@ -266,6 +268,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
266
268
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
267
269
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
268
270
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
271
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
269
272
270
273
repositoryManagerListener . ClearReceivedCalls ( ) ;
271
274
repositoryManagerEvents . Reset ( ) ;
@@ -312,6 +315,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
312
315
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
313
316
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
314
317
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
318
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
315
319
316
320
repositoryManagerListener . ClearReceivedCalls ( ) ;
317
321
repositoryManagerEvents . Reset ( ) ;
@@ -322,16 +326,16 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
322
326
RepositoryManager . WaitForEvents ( ) ;
323
327
repositoryManagerEvents . WaitForNotBusy ( ) ;
324
328
325
- repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
326
- repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
327
- repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
329
+ repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
330
+ repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
331
+ repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
328
332
329
333
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
330
334
repositoryManagerListener . Received ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
331
335
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
332
336
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
333
337
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
334
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
338
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
335
339
repositoryManagerListener . Received ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
336
340
repositoryManagerListener . Received ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
337
341
}
@@ -358,6 +362,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
358
362
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
359
363
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
360
364
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
365
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
361
366
362
367
repositoryManagerListener . ClearReceivedCalls ( ) ;
363
368
@@ -368,14 +373,14 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
368
373
RepositoryManager . WaitForEvents ( ) ;
369
374
repositoryManagerEvents . WaitForNotBusy ( ) ;
370
375
371
- repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
376
+ repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
372
377
373
378
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
374
379
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
375
380
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
376
381
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
377
382
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
378
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
383
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
379
384
repositoryManagerListener . Received ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
380
385
repositoryManagerListener . DidNotReceive ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
381
386
@@ -388,7 +393,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
388
393
RepositoryManager . WaitForEvents ( ) ;
389
394
repositoryManagerEvents . WaitForNotBusy ( ) ;
390
395
391
- repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
396
+ repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
392
397
393
398
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
394
399
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
@@ -422,6 +427,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
422
427
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
423
428
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
424
429
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
430
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
425
431
426
432
repositoryManagerListener . ClearReceivedCalls ( ) ;
427
433
repositoryManagerEvents . Reset ( ) ;
@@ -441,7 +447,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
441
447
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
442
448
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
443
449
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
444
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
450
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
445
451
repositoryManagerListener . Received ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
446
452
repositoryManagerListener . Received ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
447
453
@@ -491,6 +497,7 @@ await Initialize(TestRepoMasterTwoRemotes, initializeRepository: false,
491
497
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
492
498
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
493
499
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
500
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
494
501
495
502
repositoryManagerListener . ClearReceivedCalls ( ) ;
496
503
repositoryManagerEvents . Reset ( ) ;
@@ -505,6 +512,7 @@ await RepositoryManager.CreateBranch("branch2", "another/master")
505
512
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
506
513
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
507
514
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
515
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
508
516
509
517
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
510
518
repositoryManagerListener . Received ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
@@ -560,6 +568,7 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
560
568
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
561
569
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
562
570
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
571
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
563
572
564
573
repositoryManagerListener . ClearReceivedCalls ( ) ;
565
574
@@ -569,14 +578,14 @@ await Initialize(TestRepoMasterCleanSynchronized, initializeRepository: false,
569
578
RepositoryManager . WaitForEvents ( ) ;
570
579
repositoryManagerEvents . WaitForNotBusy ( ) ;
571
580
572
- repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( TimeSpan . FromSeconds ( 2 ) ) . Should ( ) . BeTrue ( ) ;
581
+ repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
573
582
574
583
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
575
584
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
576
585
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
577
586
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
578
587
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
579
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
588
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
580
589
repositoryManagerListener . Received ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
581
590
repositoryManagerListener . DidNotReceive ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
582
591
}
@@ -603,6 +612,7 @@ await Initialize(TestRepoMasterCleanUnsynchronized, initializeRepository: false,
603
612
repositoryManagerEvents . CurrentBranchUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
604
613
repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
605
614
repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
615
+ repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
606
616
607
617
repositoryManagerListener . ClearReceivedCalls ( ) ;
608
618
repositoryManagerEvents . Reset ( ) ;
@@ -613,16 +623,15 @@ await Initialize(TestRepoMasterCleanUnsynchronized, initializeRepository: false,
613
623
RepositoryManager . WaitForEvents ( ) ;
614
624
repositoryManagerEvents . WaitForNotBusy ( ) ;
615
625
616
- repositoryManagerEvents . GitLogUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
617
- repositoryManagerEvents . LocalBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
626
+ repositoryManagerEvents . RemoteBranchesUpdated . WaitOne ( Timeout ) . Should ( ) . BeTrue ( ) ;
618
627
619
628
repositoryManagerListener . Received ( ) . OnIsBusyChanged ( Args . Bool ) ;
620
629
repositoryManagerListener . DidNotReceive ( ) . CurrentBranchUpdated ( Args . NullableConfigBranch , Args . NullableConfigRemote ) ;
621
630
repositoryManagerListener . DidNotReceive ( ) . GitAheadBehindStatusUpdated ( Args . GitAheadBehindStatus ) ;
622
631
repositoryManagerListener . DidNotReceive ( ) . GitStatusUpdated ( Args . GitStatus ) ;
623
632
repositoryManagerListener . DidNotReceive ( ) . GitLocksUpdated ( Args . GitLocks ) ;
624
- repositoryManagerListener . Received ( ) . GitLogUpdated ( Args . GitLogs ) ;
625
- repositoryManagerListener . Received ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
633
+ repositoryManagerListener . DidNotReceive ( ) . GitLogUpdated ( Args . GitLogs ) ;
634
+ repositoryManagerListener . DidNotReceive ( ) . LocalBranchesUpdated ( Args . LocalBranchDictionary ) ;
626
635
repositoryManagerListener . Received ( ) . RemoteBranchesUpdated ( Args . RemoteDictionary , Args . RemoteBranchDictionary ) ;
627
636
}
628
637
finally
0 commit comments