Skip to content

Commit 32cabd8

Browse files
committed
namespace should private
1 parent 2aa8c23 commit 32cabd8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/SocketIOClient/V2/SocketIO.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public SocketIO(Uri uri, SocketIOOptions options)
4040
public string Id { get; private set; }
4141
public IRandom Random { get; set; }
4242

43-
public string Namespace { get; private set; }
43+
private string Namespace { get; set; }
4444

4545
private Uri _serverUri;
4646

tests/SocketIOClient.UnitTests/V2/SocketIOTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public void NothingCalled_DefaultValues()
3838
io.PacketId.Should().Be(0);
3939
io.Connected.Should().BeFalse();
4040
io.Id.Should().BeNull();
41-
io.Namespace.Should().BeNull();
4241
io.SessionFactory.Should().BeOfType<DefaultSessionFactory>();
4342
}
4443

0 commit comments

Comments
 (0)