Skip to content

Commit

Permalink
Fix unit test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroMuravskyi committed Nov 30, 2023
1 parent 3878ba5 commit 45f940a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Elements/test/AdaptiveGridTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ public void AdaptiveGridClone()
Assert.False(clone.TryGetVertexIndex((5, 2), out index));

Assert.True(grid.TryGetVertexIndex((5, -5), out index));
Assert.False(clone.TryGetVertexIndex((5, 2), out index));
Assert.False(clone.TryGetVertexIndex((5, -5), out index));

var v = grid.GetVertex(4);
Assert.Equal(2, grid.GetVertex(4).Edges.Count);
Expand Down

0 comments on commit 45f940a

Please sign in to comment.