missing await

This commit is contained in:
Ryan Gribble
2016-06-09 00:03:31 +10:00
parent 3977765796
commit 089938b075
@@ -25,7 +25,7 @@ namespace Octokit.Tests.Integration.Reactive
[IntegrationTest]
public async Task CanGetAllForCurrentUser()
{
using (var context = _gitHubClient.CreateGpgKeyContext())
using (var context = await _gitHubClient.CreateGpgKeyContext())
{
var observable = _gitHubClient.User.GpgKey.GetAllForCurrent();
var keys = await observable.ToList();