aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2023-09-01 09:35:57 -0600
committerCody Robibero <cody@robibe.ro>2023-09-01 09:35:57 -0600
commitfb8b11276d530e12e3c7f604c5b5311cbc3d0905 (patch)
tree3bd1aa77fc914a47fd4cbc68453662cd88f46706 /tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs
parent35a9feaf7038d26823dbd6d7252e0b0f9a09bb75 (diff)
fix build
Diffstat (limited to 'tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs')
-rw-r--r--tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs b/tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs
index 797fc8f64..93e065685 100644
--- a/tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs
+++ b/tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs
@@ -22,7 +22,7 @@ namespace Jellyfin.Server.Tests
Assert.Single(test.Query);
var (k, v) = test.Query.First();
Assert.Equal(key, k);
- Assert.Empty(v);
+ Assert.True(StringValues.IsNullOrEmpty(v));
}
}
}