address new Travis build warning (#2017)

* make explicit that which previously was fine

* suppress build warning
This commit is contained in:
Brendan Forster
2019-09-24 11:19:10 -03:00
committed by GitHub
parent 7c31109099
commit aeb8d19f29
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -388,6 +388,7 @@ namespace Octokit.Tests.Http
connection.Received(3).GetResponse<IReadOnlyList<object>>(queuedOperationUrl, Args.CancellationToken);
}
[Fact(Skip = "Test triggers deadlock when run, needs to be investigated")]
public async Task CanCancelQueuedOperation()
{
var queuedOperationUrl = new Uri("anything", UriKind.Relative);
@@ -4,6 +4,8 @@ using System.Linq;
using Octokit;
using Octokit.Tests.Helpers;
using Xunit;
// hack because Travis on LInux is somehow upgraded to a version of .NET (Core?) that also has System.Range
using Range = Octokit.Range;
public class SearchIssuesRequestTests
{