aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-10-10 15:23:34 +0000
committerJPVenson <github@jpb.email>2024-10-10 15:23:34 +0000
commitf58a24f005a74beab9367fd0125f12b499d8af3e (patch)
tree3f084e61e8c46908e8b0ea43237e537e6037a198
parentee0dad6f432e5bfdda074e3f006f4c4d3c418d08 (diff)
Fixed tests
-rw-r--r--tests/Jellyfin.Server.Integration.Tests/Controllers/LibraryStructureControllerTests.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/Jellyfin.Server.Integration.Tests/Controllers/LibraryStructureControllerTests.cs b/tests/Jellyfin.Server.Integration.Tests/Controllers/LibraryStructureControllerTests.cs
index 190621085..bf3bfdad4 100644
--- a/tests/Jellyfin.Server.Integration.Tests/Controllers/LibraryStructureControllerTests.cs
+++ b/tests/Jellyfin.Server.Integration.Tests/Controllers/LibraryStructureControllerTests.cs
@@ -68,17 +68,6 @@ public sealed class LibraryStructureControllerTests : IClassFixture<JellyfinAppl
var client = _factory.CreateClient();
client.DefaultRequestHeaders.AddAuthHeader(_accessToken ??= await AuthHelper.CompleteStartupAsync(client));
- var createbody = new AddVirtualFolderDto()
- {
- LibraryOptions = new LibraryOptions()
- {
- Enabled = false
- }
- };
-
- using var createresponse = await client.PostAsJsonAsync("Library/VirtualFolders?name=test&refreshLibrary=true", createbody, _jsonOptions);
- Assert.Equal(HttpStatusCode.NoContent, createresponse.StatusCode);
-
using var response = await client.GetAsync("Library/VirtualFolders");
Assert.Equal(HttpStatusCode.OK, response.StatusCode);