mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
fix: fixed tests
This commit is contained in:
parent
4c22f878c7
commit
9a37b26f27
@ -29,7 +29,7 @@ public override void SetUp()
|
|||||||
|
|
||||||
// B
|
// B
|
||||||
CreateNetworked(out gameObjectB, out identityB);
|
CreateNetworked(out gameObjectB, out identityB);
|
||||||
connectionB = new NetworkConnectionToClient(0x0B);
|
connectionB = new NetworkConnectionToClient(0x0B, "");
|
||||||
connectionB.isAuthenticated = true;
|
connectionB.isAuthenticated = true;
|
||||||
connectionB.isReady = true;
|
connectionB.isReady = true;
|
||||||
connectionB.identity = identityB;
|
connectionB.identity = identityB;
|
||||||
|
@ -298,7 +298,7 @@ public void TestClientExceptionCallback()
|
|||||||
public void TestServerConnectedCallback(int id, string remoteClientAddress)
|
public void TestServerConnectedCallback(int id, string remoteClientAddress)
|
||||||
{
|
{
|
||||||
int called = 0;
|
int called = 0;
|
||||||
middleware.OnServerConnectedWithAddress = (i, remoteClientAddress) =>
|
middleware.OnServerConnectedWithAddress = (i, clientAddress) =>
|
||||||
{
|
{
|
||||||
called++;
|
called++;
|
||||||
Assert.That(i, Is.EqualTo(id));
|
Assert.That(i, Is.EqualTo(id));
|
||||||
|
Loading…
Reference in New Issue
Block a user