Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit feca080

Browse files
committed
Fix compile error in tests
1 parent 142f2e2 commit feca080

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/UnitTests/GitHub.App/ViewModels/GitHubPane/PullRequestDetailViewModelTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.ComponentModel;
43
using System.IO;
54
using System.Linq;
65
using System.Reactive;
@@ -9,6 +8,7 @@
98
using GitHub.Factories;
109
using GitHub.Models;
1110
using GitHub.Primitives;
11+
using GitHub.Commands;
1212
using GitHub.Services;
1313
using GitHub.ViewModels.GitHubPane;
1414
using LibGit2Sharp;
@@ -577,8 +577,8 @@ static Tuple<PullRequestDetailViewModel, IPullRequestService> CreateTargetAndSer
577577
Substitute.For<IModelServiceFactory>(),
578578
Substitute.For<IUsageTracker>(),
579579
Substitute.For<ITeamExplorerContext>(),
580-
Substitute.For<IStatusBarNotificationService>(),
581-
Substitute.For<IPullRequestFilesViewModel>());
580+
Substitute.For<IPullRequestFilesViewModel>(),
581+
Substitute.For<ISyncSubmodulesCommand>());
582582
vm.InitializeAsync(repository, Substitute.For<IConnection>(), "owner", "repo", 1).Wait();
583583

584584
return Tuple.Create(vm, pullRequestService);

0 commit comments

Comments
 (0)