Skip to content

Commit

Permalink
Update the tests for the DistributedCacheValidatorValueStore class.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanFarrow committed Sep 22, 2023
1 parent 471cc04 commit d2833e4
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 61 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class DistributedCacheValidatorValueStore : IValidatorValueStore
private readonly IDistributedCache _distributedCache;
private readonly IRetrieveDistributedCacheKeys _distributedCacheKeyRetriever;

public DistributedCacheValidatorValueStore(IDistributedCache distributedCache, IRetrieveDistributedCacheKeys distributedCacheKeyRetriever)
public DistributedCacheValidatorValueStore(IDistributedCache distributedCache, IRetrieveDistributedCacheKeys distributedCacheKeyRetriever, IStoreKeySerializer storeKeySerializer =null)
{
_distributedCache = distributedCache ?? throw new ArgumentNullException(nameof(distributedCache));
_distributedCacheKeyRetriever = distributedCacheKeyRetriever ?? throw new ArgumentNullException(nameof(distributedCacheKeyRetriever));
Expand Down
Loading

0 comments on commit d2833e4

Please sign in to comment.