From e1b242d247971ab2f6082eba04b57a7d131d20e0 Mon Sep 17 00:00:00 2001 From: Hinton Date: Wed, 3 Dec 2025 23:20:02 +0100 Subject: [PATCH] Log correct value --- test/SeederApi.IntegrationTest/SeedControllerTest.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/SeederApi.IntegrationTest/SeedControllerTest.cs b/test/SeederApi.IntegrationTest/SeedControllerTest.cs index e71ccc22fc..11b470e4ef 100644 --- a/test/SeederApi.IntegrationTest/SeedControllerTest.cs +++ b/test/SeederApi.IntegrationTest/SeedControllerTest.cs @@ -157,7 +157,10 @@ public class SeedControllerTests : IClassFixture, I Arguments = System.Text.Json.JsonSerializer.SerializeToElement(new { email = testEmail }) }, validPlayId); - seedResponse.EnsureSuccessStatusCode(); + + var content = await seedResponse.Content.ReadAsStringAsync(); + _output.WriteLine($"Seed Response Content: {content}"); + var seedResult = await seedResponse.Content.ReadFromJsonAsync(); Assert.NotNull(seedResult);