From 5f945aadfa66ea37bd1cedda43aa6ddea2de5277 Mon Sep 17 00:00:00 2001 From: whimsical-c4lic0 Date: Thu, 12 Feb 2026 10:57:01 -0600 Subject: [PATCH] Fix failing test --- OF DL.Tests/Services/DownloadOrchestrationServiceTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OF DL.Tests/Services/DownloadOrchestrationServiceTests.cs b/OF DL.Tests/Services/DownloadOrchestrationServiceTests.cs index 9167b52..1e04fb9 100644 --- a/OF DL.Tests/Services/DownloadOrchestrationServiceTests.cs +++ b/OF DL.Tests/Services/DownloadOrchestrationServiceTests.cs @@ -196,7 +196,7 @@ public class DownloadOrchestrationServiceTests await service.DownloadSinglePaidMessageAsync("creator", 5, "/tmp", new Dictionary(), true, true, eventHandler); - Assert.Contains(eventHandler.ContentFound, entry => entry.contentType == "Preview Paid Messages"); + Assert.Contains(eventHandler.ContentFound, entry => entry.contentType == "Paid Messages"); Assert.True(downloadService.SinglePaidMessageCalled); }