diff --git a/src/RestApiClientSharp.Test.NUnit/UnitTest.cs b/src/RestApiClientSharp.Test.NUnit/UnitTest.cs index 9921ef1..a90de71 100644 --- a/src/RestApiClientSharp.Test.NUnit/UnitTest.cs +++ b/src/RestApiClientSharp.Test.NUnit/UnitTest.cs @@ -216,7 +216,7 @@ public async Task TestExecption() } catch (Exception ex) { - Assert.That(ex.Message == "Request failed with status code NotFound"); + Assert.That(ex.Message, Is.EqualTo("Request failed with status code NotFound")); } } #endregion diff --git a/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs b/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs index f6fdce6..5e1938c 100644 --- a/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs +++ b/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs @@ -1,4 +1,4 @@ -using AndreasReitberger.Shared.Core.Models.DTO; +using AndreasReitberger.Shared.Core.DTO; namespace AndreasReitberger.API.REST.Interfaces { diff --git a/src/RestApiClientSharp/Models/Events/RestEventArgs.cs b/src/RestApiClientSharp/Models/Events/RestEventArgs.cs index b2d414c..289a7ae 100644 --- a/src/RestApiClientSharp/Models/Events/RestEventArgs.cs +++ b/src/RestApiClientSharp/Models/Events/RestEventArgs.cs @@ -1,5 +1,5 @@ using AndreasReitberger.API.REST.Interfaces; -using AndreasReitberger.Shared.Core.Models.DTO; +using AndreasReitberger.Shared.Core.DTO; namespace AndreasReitberger.API.REST.Events { diff --git a/src/RestApiClientSharp/RestApiClientSharp.csproj b/src/RestApiClientSharp/RestApiClientSharp.csproj index aa38f75..ae14d4d 100644 --- a/src/RestApiClientSharp/RestApiClientSharp.csproj +++ b/src/RestApiClientSharp/RestApiClientSharp.csproj @@ -13,7 +13,7 @@ - +