diff options
| author | Bond_009 <bond.009@outlook.com> | 2023-11-14 19:12:17 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2023-11-14 21:14:23 +0100 |
| commit | 0fd36a5bf1fc87ebbfd5b74585f0c080995c1688 (patch) | |
| tree | ee60c93712f2aedd209df4ac08588b20f6ee0521 /tests/Jellyfin.Api.Tests | |
| parent | b62b0ec2b581369de42c69305773f0edb9d701b4 (diff) | |
Fix warnings in test projects
Diffstat (limited to 'tests/Jellyfin.Api.Tests')
| -rw-r--r-- | tests/Jellyfin.Api.Tests/Controllers/UserControllerTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Api.Tests/Controllers/UserControllerTests.cs b/tests/Jellyfin.Api.Tests/Controllers/UserControllerTests.cs index 3f965d0ff..c7331c718 100644 --- a/tests/Jellyfin.Api.Tests/Controllers/UserControllerTests.cs +++ b/tests/Jellyfin.Api.Tests/Controllers/UserControllerTests.cs @@ -109,7 +109,7 @@ public class UserControllerTests v.ErrorMessage.Contains("required", StringComparison.CurrentCultureIgnoreCase)); } - private IList<ValidationResult> Validate(object model) + private List<ValidationResult> Validate(object model) { var result = new List<ValidationResult>(); var context = new ValidationContext(model, null, null); |
