We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af542bb commit 7868e17Copy full SHA for 7868e17
tests/scripts/TestRoomNode3D.cs
@@ -257,8 +257,8 @@ public async Task TestOnAreaEnteredCellArea()
257
public void TestGetCellActivityThrowsOutOfRangeException()
258
{
259
var room = new RoomNode3D() { Rows = 3, Columns = 3 };
260
- Assertions.AssertThrown(() => room.GetCellActivity(-1, -1)).IsInstanceOf<IndexOutOfRangeException>();
261
+ Assertions.AssertThrown(() => room.GetCellActivity(-1, 1)).IsInstanceOf<IndexOutOfRangeException>();
+ Assertions.AssertThrown(() => room.GetCellActivity(1, -1)).IsInstanceOf<IndexOutOfRangeException>();
262
room.QueueFree();
263
}
264
0 commit comments