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 {