From bb118111a0d15f4d9bfe6cb1410da5c9befb59fc Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Sun, 12 Nov 2017 17:05:48 -0500 Subject: [PATCH] Fixing tests --- ICD.Common.Utils.Tests/Attributes/Rpc/RpcAttributeTest.cs | 2 +- ICD.Common.Utils.Tests/EventArguments/GenericEventArgsTest.cs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ICD.Common.Utils.Tests/Attributes/Rpc/RpcAttributeTest.cs b/ICD.Common.Utils.Tests/Attributes/Rpc/RpcAttributeTest.cs index ef94b90..e583b1c 100644 --- a/ICD.Common.Utils.Tests/Attributes/Rpc/RpcAttributeTest.cs +++ b/ICD.Common.Utils.Tests/Attributes/Rpc/RpcAttributeTest.cs @@ -11,7 +11,7 @@ namespace ICD.Common.Utils.Tests.Attributes.Rpc private class TestClass { [Rpc("A")] - public int TestProperty { get; set; } + public string TestProperty { get; set; } [Rpc("A")] public void TestMethod() diff --git a/ICD.Common.Utils.Tests/EventArguments/GenericEventArgsTest.cs b/ICD.Common.Utils.Tests/EventArguments/GenericEventArgsTest.cs index 97fa828..1c0f919 100644 --- a/ICD.Common.Utils.Tests/EventArguments/GenericEventArgsTest.cs +++ b/ICD.Common.Utils.Tests/EventArguments/GenericEventArgsTest.cs @@ -1,5 +1,4 @@ -using ICD.Common.Utils.EventArguments; -using NUnit.Framework; +using NUnit.Framework; namespace ICD.Common.Utils.Tests.EventArguments {