From 535a07e0a84be9fd0440ace64c86f9b4d556c92a Mon Sep 17 00:00:00 2001 From: Bart De Smet Date: Thu, 24 Sep 2020 16:36:17 -0700 Subject: [PATCH] Another attempt to make this work again. --- .../Api/ApiApprovalTests.cs | 4 +--- .../Tests.System.Reactive.ApiApprovals/DiffPlexReporter.cs | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/Api/ApiApprovalTests.cs b/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/Api/ApiApprovalTests.cs index a7e4c439c4..ebec9c7524 100644 --- a/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/Api/ApiApprovalTests.cs +++ b/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/Api/ApiApprovalTests.cs @@ -10,7 +10,6 @@ using VerifyTests; using VerifyXunit; using Xunit; -using Xunit.Abstractions; namespace ReactiveTests.Tests.Api { @@ -19,8 +18,7 @@ public class ApiApprovalTests : { VerifySettings verifySettings; - public ApiApprovalTests(ITestOutputHelper output) : - base(output) + public ApiApprovalTests() { verifySettings = new VerifySettings(); verifySettings.UseExtension("cs"); diff --git a/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/DiffPlexReporter.cs b/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/DiffPlexReporter.cs index a900bc5972..66b2f80182 100644 --- a/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/DiffPlexReporter.cs +++ b/Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/DiffPlexReporter.cs @@ -13,7 +13,7 @@ namespace ReactiveTests.Tests { public static class DiffPlexReporter { - public static async Task Report(string receivedFile, string verifiedFile) + public static async Task Report(string receivedFile, string verifiedFile, string? message) { #if(!DEBUG) var receivedText = File.ReadAllText(receivedFile);