Skip to content

Commit

Permalink
breaking: rename AsyncWsTransport -> WsTransport
Browse files Browse the repository at this point in the history
BREAKING CHANGE: rename AsyncWsTransport -> WsTransport
  • Loading branch information
paulpach committed Jul 15, 2020
1 parent c465912 commit 9c394bc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Mirror.Websocket
{
public class AsyncWsTransport : Transport
public class WsTransport : Transport
{
public int Port = 7778;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
namespace Mirror.Tests
{
[TestFixture(typeof(TcpTransport), new[] { "tcp4" }, "tcp4://localhost", 7777)]
[TestFixture(typeof(AsyncWsTransport), new[] { "ws", "wss" }, "ws://localhost", 7778)]
[TestFixture(typeof(WsTransport), new[] { "ws", "wss" }, "ws://localhost", 7778)]
public class AsyncTransportTests<T> where T : Transport
{
#region SetUp
Expand Down

0 comments on commit 9c394bc

Please sign in to comment.