Skip to content

Commit 79d94e4

Browse files
committed
Increase WaitForAction timeout tests to 10 seconds
Tests usually pay with 4.3 and they also fail so this is an attempt to fix the instability.
1 parent 50b0592 commit 79d94e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Tests/InputSystem.Editor/InputActionsEditorTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public override IEnumerator UnitySetup()
4545

4646
#region Helper methods
4747

48-
IEnumerator WaitForActionMapRename(int index, bool isActive, double timeoutSecs = 5.0)
48+
IEnumerator WaitForActionMapRename(int index, bool isActive, double timeoutSecs = 10.0)
4949
{
5050
return WaitUntil(() =>
5151
{
@@ -58,7 +58,7 @@ IEnumerator WaitForActionMapRename(int index, bool isActive, double timeoutSecs
5858
}, $"WaitForActionMapRename {index} {isActive}", timeoutSecs);
5959
}
6060

61-
IEnumerator WaitForActionRename(int index, bool isActive, double timeoutSecs = 5.0)
61+
IEnumerator WaitForActionRename(int index, bool isActive, double timeoutSecs = 10.0)
6262
{
6363
return WaitUntil(() =>
6464
{

0 commit comments

Comments
 (0)