From 880745ff1e1caaa0a9bb26db598d0b87f4806271 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Fri, 20 Oct 2017 16:25:31 -0400 Subject: [PATCH] Added tolerance to timer repeat test --- ICD.Common.Utils.Tests/Timers/SafeTimerTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICD.Common.Utils.Tests/Timers/SafeTimerTest.cs b/ICD.Common.Utils.Tests/Timers/SafeTimerTest.cs index ce0894c..6a1e34e 100644 --- a/ICD.Common.Utils.Tests/Timers/SafeTimerTest.cs +++ b/ICD.Common.Utils.Tests/Timers/SafeTimerTest.cs @@ -81,7 +81,7 @@ namespace ICD.Common.Utils.Tests.Timers ThreadingUtils.Sleep(50); - Assert.AreEqual(4, called, 1); + Assert.AreEqual(4, called, 2); timer.Dispose(); }