diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-09-01 14:23:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-01 14:23:50 +0200 |
| commit | 8ae1eb6c5028b1817045e3226a2ee5be29a1d655 (patch) | |
| tree | 91611f97aa0b7a87188c445efe782bb11b270482 | |
| parent | 4cd372109dbc740e7e97719b44dec114524e54b5 (diff) | |
| parent | 07f64102ddc5b19a0c2e3e9cae308336dad18c5a (diff) | |
Merge pull request #6491 from Bond-009/fixbuild
Fix build
| -rw-r--r-- | tests/Jellyfin.Server.Integration.Tests/Controllers/MediaStructureControllerTests.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/Jellyfin.Server.Integration.Tests/Controllers/MediaStructureControllerTests.cs b/tests/Jellyfin.Server.Integration.Tests/Controllers/MediaStructureControllerTests.cs index 8af43050f..19d8381ea 100644 --- a/tests/Jellyfin.Server.Integration.Tests/Controllers/MediaStructureControllerTests.cs +++ b/tests/Jellyfin.Server.Integration.Tests/Controllers/MediaStructureControllerTests.cs @@ -87,10 +87,7 @@ namespace Jellyfin.Server.Integration.Tests.Controllers var data = new UpdateMediaPathRequestDto() { Name = " ", - PathInfo = new MediaPathInfo - { - Path = "test" - } + PathInfo = new MediaPathInfo("test") }; using var postContent = new ByteArrayContent(JsonSerializer.SerializeToUtf8Bytes(data, _jsonOptions)); |
