From 3070f504ac391c53bc5a9c46574410558f8e0251 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 17 Oct 2018 12:54:53 -0500 Subject: [PATCH] temp skip Wayback tests ref #590 --- tests/FilterLists.Services.Tests/WaybackServiceTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/FilterLists.Services.Tests/WaybackServiceTests.cs b/tests/FilterLists.Services.Tests/WaybackServiceTests.cs index 49f1ce906..2345dfb8b 100644 --- a/tests/FilterLists.Services.Tests/WaybackServiceTests.cs +++ b/tests/FilterLists.Services.Tests/WaybackServiceTests.cs @@ -7,7 +7,7 @@ namespace FilterLists.Services.Tests { public class WaybackServiceTests { - [Fact] + [Fact(Skip = "https://github.com/collinbarrett/FilterLists/issues/590")] public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsAccessibleRawUrl() { const string url = "https://github.com/collinbarrett/FilterLists"; @@ -19,7 +19,7 @@ public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsAcce } } - [Fact] + [Fact(Skip = "https://github.com/collinbarrett/FilterLists/issues/590")] public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsRecentTimestampUtc() { const string url = "https://github.com/collinbarrett/FilterLists"; @@ -28,7 +28,7 @@ public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsRece meta.TimestampUtc < DateTime.UtcNow); } - [Fact] + [Fact(Skip = "https://github.com/collinbarrett/FilterLists/issues/590")] public async void GetMostRecentSnapshotMetaAsync_UrlNotInWaybackMachine_ReturnsNull() { const string url = "https://raw.githubusercontent.com/collinbarrett/FilterLists/master/doesnotexist";