Skip to content

Commit 71cc234

Browse files
fixes after namespace change
1 parent 0959a95 commit 71cc234

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Contracts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading;
33
using System.Threading.Tasks;
44

5-
namespace UiPath.CoreIpc.NodeInterop;
5+
namespace UiPath.Ipc.NodeInterop;
66

77
internal static class Contracts
88
{

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
using System.Net.WebSockets;
88
using System.Threading;
99
using System.Threading.Tasks;
10-
using UiPath.CoreIpc.NamedPipe;
11-
using UiPath.CoreIpc.WebSockets;
10+
using UiPath.Ipc.NamedPipe;
11+
using UiPath.Ipc.WebSockets;
1212

13-
namespace UiPath.CoreIpc.NodeInterop;
13+
namespace UiPath.Ipc.NodeInterop;
1414

1515
using static Contracts;
1616
using static ServiceImpls;

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/ServiceImpls.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Threading;
44
using System.Threading.Tasks;
55

6-
namespace UiPath.CoreIpc.NodeInterop;
6+
namespace UiPath.Ipc.NodeInterop;
77

88
using static Contracts;
99

src/Clients/js/dotnet/UiPath.CoreIpc.NodeInterop/Signalling.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Newtonsoft.Json.Converters;
33
using System;
44

5-
namespace UiPath.CoreIpc.NodeInterop;
5+
namespace UiPath.Ipc.NodeInterop;
66

77
internal static class Signalling
88
{

src/UiPath.CoreIpc.Tests/EndpointTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public async Task MissingCallback()
8787
{
8888
exception = ex;
8989
}
90-
exception.Message.ShouldBe("Callback contract mismatch. Requested System.IDisposable, but it's UiPath.CoreIpc.Tests.ISystemCallback.");
90+
exception.Message.ShouldBe("Callback contract mismatch. Requested System.IDisposable, but it's UiPath.Ipc.Tests.ISystemCallback.");
9191
exception.Is<ArgumentException>().ShouldBeTrue();
9292
}
9393
[Fact]

0 commit comments

Comments
 (0)