Skip to content

Commit

Permalink
Updated code formatting to match rules in .editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed May 6, 2024
1 parent d1337da commit 93efa80
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,15 @@ private static IPipelineContextFactory CreateContextFactory( ISystemClock? clock

var cache = new MemoryDistributedCacheOptions
{
Clock = clock, ExpirationScanFrequency = TimeSpan.FromMilliseconds( 100 )
Clock = clock,
ExpirationScanFrequency = TimeSpan.FromMilliseconds( 100 )
};

var options = Substitute.For<IOptions<MemoryDistributedCacheOptions>>();
options.Value.Returns( cache );

container.AddService(
typeof(IDistributedCache),
typeof( IDistributedCache ),
new MemoryDistributedCache( options ) );

container.AddService(
Expand Down

0 comments on commit 93efa80

Please sign in to comment.