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

Commit ff484ab

Browse files
Fixing compilation errors
1 parent 14eadbe commit ff484ab

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,12 @@ public Target(IRepositoryService repositoryService, int itemCount)
172172

173173
public override IReadOnlyList<string> States { get; } = new[] { "Open", "Closed" };
174174

175-
protected override IVirtualizingListSource<IIssueListItemViewModelBase> CreateItemSource() => ItemSource;
175+
protected IVirtualizingListSource<IIssueListItemViewModelBase> CreateItemSource() => ItemSource;
176+
177+
protected override Task<IVirtualizingListSource<IIssueListItemViewModelBase>> CreateItemSource(bool refresh)
178+
{
179+
throw new NotImplementedException();
180+
}
176181

177182
protected override Task DoOpenItem(IIssueListItemViewModelBase item)
178183
{

0 commit comments

Comments
 (0)