Updated test dbg message

pull/12798/head
JPVenson 4 months ago
parent 056dcf7e81
commit 7d137a8e8a

@ -120,14 +120,6 @@ public sealed class LibraryStructureControllerTests : IClassFixture<JellyfinAppl
client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
using var response = await client.DeleteAsync("Library/VirtualFolders?name=test&refreshLibrary=true");
try
{
Assert.Equal(HttpStatusCode.NoContent, response.StatusCode);
}
catch (Exception)
{
Console.WriteLine("DeleteFailed: " + response.Content.ReadAsStringAsync());
throw;
}
Assert.True(response.StatusCode == HttpStatusCode.NoContent, "DeleteFailed: " + response.Content.ReadAsStringAsync());
}
}

Loading…
Cancel
Save