Change test to allow owned items to run local providers

I need more information about the need for this test, to make sure I am not introducing an issue.
This commit is contained in:
SenorSmartyPants 2023-02-26 14:13:21 -06:00
parent 99816b07dc
commit 04f23a0e73
1 changed files with 2 additions and 2 deletions

View File

@ -368,8 +368,8 @@ namespace Jellyfin.Providers.Tests.Manager
[Theory]
[InlineData(nameof(ICustomMetadataProvider), true)]
[InlineData(nameof(IRemoteMetadataProvider), true)]
[InlineData(nameof(ILocalMetadataProvider), false)]
public void GetMetadataProviders_CanRefreshMetadataOwned_WhenNotLocal(string providerType, bool expected)
[InlineData(nameof(ILocalMetadataProvider), true)]
public void GetMetadataProviders_CanRefreshMetadataOwned(string providerType, bool expected)
{
GetMetadataProviders_CanRefreshMetadata_Tester(providerType, expected, ownedItem: true);
}