We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1337da commit 93efa80Copy full SHA for 93efa80
test/Hyperbee.PipelineCaching.Tests/PipelineDistributedCachingTests.cs
@@ -192,14 +192,15 @@ private static IPipelineContextFactory CreateContextFactory( ISystemClock? clock
192
193
var cache = new MemoryDistributedCacheOptions
194
{
195
- Clock = clock, ExpirationScanFrequency = TimeSpan.FromMilliseconds( 100 )
+ Clock = clock,
196
+ ExpirationScanFrequency = TimeSpan.FromMilliseconds( 100 )
197
};
198
199
var options = Substitute.For<IOptions<MemoryDistributedCacheOptions>>();
200
options.Value.Returns( cache );
201
202
container.AddService(
- typeof(IDistributedCache),
203
+ typeof( IDistributedCache ),
204
new MemoryDistributedCache( options ) );
205
206
0 commit comments