Skip to content

Commit

Permalink
fixes after namespace change
Browse files Browse the repository at this point in the history
  • Loading branch information
eduard-dumitru committed Jun 27, 2024
1 parent 0959a95 commit 71cc234
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace UiPath.CoreIpc.NodeInterop;
namespace UiPath.Ipc.NodeInterop;

internal static class Contracts
{
Expand Down
6 changes: 3 additions & 3 deletions src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
using System.Net.WebSockets;
using System.Threading;
using System.Threading.Tasks;
using UiPath.CoreIpc.NamedPipe;
using UiPath.CoreIpc.WebSockets;
using UiPath.Ipc.NamedPipe;
using UiPath.Ipc.WebSockets;

namespace UiPath.CoreIpc.NodeInterop;
namespace UiPath.Ipc.NodeInterop;

using static Contracts;
using static ServiceImpls;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace UiPath.CoreIpc.NodeInterop;
namespace UiPath.Ipc.NodeInterop;

using static Contracts;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Newtonsoft.Json.Converters;
using System;

namespace UiPath.CoreIpc.NodeInterop;
namespace UiPath.Ipc.NodeInterop;

internal static class Signalling
{
Expand Down
2 changes: 1 addition & 1 deletion src/UiPath.CoreIpc.Tests/EndpointTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public async Task MissingCallback()
{
exception = ex;
}
exception.Message.ShouldBe("Callback contract mismatch. Requested System.IDisposable, but it's UiPath.CoreIpc.Tests.ISystemCallback.");
exception.Message.ShouldBe("Callback contract mismatch. Requested System.IDisposable, but it's UiPath.Ipc.Tests.ISystemCallback.");
exception.Is<ArgumentException>().ShouldBeTrue();
}
[Fact]
Expand Down

0 comments on commit 71cc234

Please sign in to comment.