chore(NetworkServerRuntimeTest): Fixed typo

This commit is contained in:
MrGadget 2024-04-14 12:14:25 -04:00
parent 008c01e2bd
commit 3ef37dfa3f

View File

@ -130,7 +130,7 @@ public void Shutdown_DisablesAllSpawnedPrefabs()
Assert.IsTrue(identity1 != null); Assert.IsTrue(identity1 != null);
Assert.IsTrue(identity2 != null); Assert.IsTrue(identity2 != null);
Assert.IsFalse(identity1.gameObject.activeSelf); Assert.IsFalse(identity1.gameObject.activeSelf);
Assert.IsFalse(identity1.gameObject.activeSelf); Assert.IsFalse(identity2.gameObject.activeSelf);
Assert.That(NetworkServer.spawned, Is.Empty); Assert.That(NetworkServer.spawned, Is.Empty);
} }