From 842ae3f8bbbe81ee64e2cbc7f6aa3fbc18fe5f82 Mon Sep 17 00:00:00 2001 From: James Clancey Date: Mon, 15 Jul 2019 23:17:00 -0800 Subject: [PATCH] Added dispose to Tests --- tests/HotUI.Tests/GenericViewHandler.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/HotUI.Tests/GenericViewHandler.cs b/tests/HotUI.Tests/GenericViewHandler.cs index f33fef4..e298a5a 100644 --- a/tests/HotUI.Tests/GenericViewHandler.cs +++ b/tests/HotUI.Tests/GenericViewHandler.cs @@ -29,5 +29,10 @@ namespace HotUI.Tests { { ChangedProperties [property] = value; } - } + + public void Dispose() + { + ChangedProperties?.Clear(); + } + } }