1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 07:43:54 +00:00

Log correct value

This commit is contained in:
Hinton
2025-12-03 23:20:02 +01:00
parent 487f8b3a82
commit e1b242d247

View File

@@ -157,7 +157,10 @@ public class SeedControllerTests : IClassFixture<SeederApiApplicationFactory>, 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<SceneResponseModel>();
Assert.NotNull(seedResult);