Remove switch back to selection tool to simplify test flow

This commit is contained in:
Dean Herbert 2022-10-26 12:18:54 +09:00
parent 48057412f5
commit cbcebfa130
1 changed files with 0 additions and 2 deletions

View File

@ -79,8 +79,6 @@ private void rectangularGridActive(bool active)
AddAssert("placement blueprint at (0, 0)", () => Precision.AlmostEquals(Editor.ChildrenOfType<HitCirclePlacementBlueprint>().Single().HitObject.Position, new Vector2(0, 0)));
else
AddAssert("placement blueprint at (1, 1)", () => Precision.AlmostEquals(Editor.ChildrenOfType<HitCirclePlacementBlueprint>().Single().HitObject.Position, new Vector2(1, 1)));
AddStep("choose selection tool", () => InputManager.Key(Key.Number1));
}
[Test]