chore(NetworkServerRuntimeTest): Fixed typo

This commit is contained in:
MrGadget 2024-04-14 12:14:25 -04:00
parent 810e066423
commit 5d167b9998

View File

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