Skip to content

Commit fd05702

Browse files
niemyjskiejsmith
authored andcommitted
tweaked test
1 parent 642793d commit fd05702

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/Exceptionless.Tests/Plugins/PluginTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -862,8 +862,7 @@ public void VerifyDeduplicationFromFiles() {
862862
var errorPlugin = new ErrorPlugin();
863863

864864
foreach (var ev in ErrorDataReader.GetEvents()) {
865-
using (var duplicateCheckerPlugin = new DuplicateCheckerPlugin(TimeSpan.FromMilliseconds(20))) {
866-
865+
using (var duplicateCheckerPlugin = new DuplicateCheckerPlugin(TimeSpan.FromMilliseconds(30))) {
867866
for (int index = 0; index < 2; index++) {
868867
var contextData = new ContextData();
869868
var context = new EventPluginContext(client, ev, contextData);
@@ -876,7 +875,7 @@ public void VerifyDeduplicationFromFiles() {
876875
Assert.Null(context.Event.Count);
877876
} else {
878877
Assert.True(context.Cancel);
879-
Thread.Sleep(50);
878+
Thread.Sleep(60);
880879
Assert.Equal(1, context.Event.Count);
881880
}
882881
}

0 commit comments

Comments
 (0)