Skip to content

Commit 4da6b65

Browse files
authored
Fix test project namespace inconsistency (#413)
1 parent 4ce6e87 commit 4da6b65

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

tests/KubernetesClient.Tests/Kubernetes.WebSockets.Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
* These tests are only for the netstandard version of the client (there are separate tests for netcoreapp that connect to a local test-hosted server).
33
*/
44

5-
using k8s.tests.Mock;
5+
using k8s.Tests.Mock;
66
using Microsoft.Rest;
77
using System;
88
using System.Collections.Generic;
99
using System.Threading;
1010
using System.Threading.Tasks;
1111
using Xunit;
1212

13-
namespace k8s.tests
13+
namespace k8s.Tests
1414
{
1515
public class KubernetesExecTests
1616
{

tests/KubernetesClient.Tests/KubernetesClient.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<IsPackable>false</IsPackable>
4-
<RootNamespace>k8s.tests</RootNamespace>
4+
<RootNamespace>k8s.Tests</RootNamespace>
55
<TargetFrameworks>netcoreapp2.1;netcoreapp2.0</TargetFrameworks>
66
</PropertyGroup>
77

tests/KubernetesClient.Tests/Mock/MockWebSocket.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading;
66
using System.Threading.Tasks;
77

8-
namespace k8s.tests.Mock
8+
namespace k8s.Tests.Mock
99
{
1010
public class MockWebSocket : WebSocket
1111
{
@@ -20,7 +20,7 @@ public MockWebSocket(string subProtocol = null)
2020
{
2121
this.subProtocol = subProtocol;
2222
}
23-
23+
2424
public void SetState(WebSocketState state)
2525
{
2626
this.state = state;

tests/KubernetesClient.Tests/Mock/MockWebSocketBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Threading;
99
using System.Threading.Tasks;
1010

11-
namespace k8s.tests.Mock
11+
namespace k8s.Tests.Mock
1212
{
1313
public class MockWebSocketBuilder : WebSocketBuilder
1414
{

tests/KubernetesClient.Tests/StreamDemuxerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading;
77
using System.Threading.Tasks;
8-
using k8s.tests.Mock;
8+
using k8s.Tests.Mock;
99
using Xunit;
1010
using Xunit.Abstractions;
1111

0 commit comments

Comments
 (0)