Skip to content

Commit 0437ffd

Browse files
committed
format test file
1 parent 17bc084 commit 0437ffd

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Assets/Tests/InputSystem/CoreTests_Events.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public void Events_OnAnyButtonPressed_FiltersOutOtherControls()
218218

219219
Assert.That(callCount, Is.EqualTo(1));
220220
}
221-
221+
222222
[Test]
223223
[Category("Events")]
224224
public void Events_OnAnyButtonPressed_WorksWithTouchControls()
@@ -236,12 +236,13 @@ public void Events_OnAnyButtonPressed_WorksWithTouchControls()
236236
++callCount;
237237
});
238238

239+
239240
Assert.That(callCount, Is.Zero);
240241

241242
InputSystem.Update();
242243

243-
SetTouch(0,TouchPhase.Began, new Vector2(12,12));
244-
244+
SetTouch(0, TouchPhase.Began, new Vector2(12, 12));
245+
245246
InputSystem.Update();
246247

247248
Assert.That(callCount, Is.EqualTo(1));

0 commit comments

Comments
 (0)