Skip to content

Commit

Permalink
Test runner is slow.
Browse files Browse the repository at this point in the history
  • Loading branch information
nblumhardt committed Nov 19, 2015
1 parent cf6f7c2 commit 3fa2415
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 60 deletions.
58 changes: 0 additions & 58 deletions src/Serilog.FullNetFx/Enrichers/EnvironmentUserNameEnricher.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ public void WhenAnEventIsEnqueuedItIsWrittenToABatch_OnFlush()
[Fact]
public void WhenAnEventIsEnqueuedItIsWrittenToABatch_OnTimer()
{
var pbs = new InMemoryPeriodicBatchingSink(2, TinyWait, TimeSpan.Zero);
var pbs = new InMemoryPeriodicBatchingSink(2, TinyWait, MicroWait);
var evt = Some.InformationEvent();
pbs.Emit(evt);
Thread.Sleep(TinyWait + TinyWait);
Thread.Sleep(TinyWait + TinyWait + TinyWait);
pbs.Stop();
Assert.Equal(1, pbs.Batches.Count);
Assert.False(pbs.WasCalledAfterDisposal);
Expand Down

0 comments on commit 3fa2415

Please sign in to comment.