test(matching): align orchestration query expectations
CI / build-and-test (push) Canceled after 0s
CI / apple-contracts (push) Canceled after 0s
CI / compose-contracts (push) Canceled after 0s

This commit is contained in:
2026-07-30 02:01:33 -04:00
parent 7da2cbf5c5
commit b148cdf5fa
@@ -660,7 +660,7 @@ public sealed class PlaylistOrchestrationIntegrationTests(ITestOutputHelper outp
gateway.Setup(item => item.GetProviderOrder(ProviderCapabilityKind.Download))
.Returns(["apple-download", "deezer"]);
gateway.Setup(item => item.SearchPlayableSongsAsync(
It.IsAny<ProtocolExecutionContext>(), "Feels Artist", 60))
It.IsAny<ProtocolExecutionContext>(), "Feels", 60))
.ReturnsAsync(
[
new Song
@@ -773,7 +773,7 @@ public sealed class PlaylistOrchestrationIntegrationTests(ITestOutputHelper outp
var release = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously);
var entered = 0;
gateway.Setup(item => item.SearchPlayableSongsAsync(
It.IsAny<ProtocolExecutionContext>(), "Concurrent external Artist", 60))
It.IsAny<ProtocolExecutionContext>(), "Concurrent external", 60))
.Returns(async () =>
{
if (Interlocked.Increment(ref entered) == 8)