Skip to content

Commit

Permalink
Update CalibrationTests.cs
Browse files Browse the repository at this point in the history
increased timeout to 60s
  • Loading branch information
fwild authored Apr 1, 2024
1 parent 5ba972d commit 7407b1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/UnitTests/PlayModeTests/CalibrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class CalibrationTests


// number of seconds to wait for setup or tests
private float testTimeOut = 5.0f;
private float testTimeOut = 60.0f;
private RootObject rootObject;

#endregion Variables
Expand Down Expand Up @@ -320,7 +320,7 @@ private async Task PerformCalibration(bool isEditMode)
/// </summary>
/// <param name="timeout"></param>
/// <returns></returns>
private IEnumerator EnsureTestReadiness(float timeout = 15.0f)
private IEnumerator EnsureTestReadiness(float timeout = 60.0f)
{
float timeoutStart = Time.time;
yield return new WaitWhile(() => readyToTest == false && Time.time - timeoutStart < timeout);
Expand Down

0 comments on commit 7407b1a

Please sign in to comment.