From 419b070375615ec8463c4b970b376b843dee2147 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Mon, 25 Jan 2021 12:18:24 -0500 Subject: [PATCH] chore: Fixing unit test --- ICD.Common.Utils/Collections/ScrollQueue.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ICD.Common.Utils/Collections/ScrollQueue.cs b/ICD.Common.Utils/Collections/ScrollQueue.cs index 5b28acd..a443f95 100644 --- a/ICD.Common.Utils/Collections/ScrollQueue.cs +++ b/ICD.Common.Utils/Collections/ScrollQueue.cs @@ -32,7 +32,9 @@ namespace ICD.Common.Utils.Collections m_MaxSize = value; TContents unused; - Trim(out unused); + while (Trim(out unused)) + { + } } }