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

Commit bf80fe6

Browse files
committed
Fix a couple of CA warnings.
1 parent f26890e commit bf80fe6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public async Task OpenItem_Navigates_To_Correct_Fork_Url()
2121
var uri = (Uri)null;
2222
target.NavigationRequested.Subscribe(x => uri = x);
2323

24-
target.OpenItem.Execute(target.Items[1]);
24+
await target.OpenItem.Execute(target.Items[1]);
2525

2626
Assert.That(uri, Is.EqualTo(new Uri("github://pane/owner/name/pull/2")));
2727
}

test/Helpers/ReactiveTestHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static bool CanExecute<TParam, TResult>(this ReactiveCommand<TParam, TRes
2929
}
3030
}
3131

32-
public class UserErrorResult : IDisposable
32+
public sealed class UserErrorResult : IDisposable
3333
{
3434
readonly IDisposable handlerOverride;
3535

0 commit comments

Comments
 (0)