@@ -302,7 +302,7 @@ public void NonAuthorityOwnerSettingStateTest([Values] Interpolation interpolati
302302 var newRotation = Quaternion . Euler ( 1 , 2 , 3 ) ;
303303 var newScale = new Vector3 ( 2.0f , 2.0f , 2.0f ) ;
304304 m_NonAuthoritativeTransform . SetState ( newPosition , null , null , interpolate ) ;
305- var success = WaitForConditionOrTimeOutWithTimeTravel ( ( ) => PositionsMatchesValue ( newPosition ) , 800 ) ;
305+ var success = WaitForConditionOrTimeOutWithTimeTravel ( ( ) => PositionsMatchesValue ( newPosition ) , 120 ) ;
306306 Assert . True ( success , $ "Timed out waiting for non-authoritative position state request to be applied!") ;
307307 Assert . True ( Approximately ( newPosition , m_AuthoritativeTransform . transform . position ) , "Authoritative position does not match!" ) ;
308308 Assert . True ( Approximately ( newPosition , m_NonAuthoritativeTransform . transform . position ) , "Non-Authoritative position does not match!" ) ;
@@ -324,7 +324,7 @@ public void NonAuthorityOwnerSettingStateTest([Values] Interpolation interpolati
324324 newScale = new Vector3 ( 0.5f , 0.5f , 0.5f ) ;
325325
326326 m_NonAuthoritativeTransform . SetState ( newPosition , newRotation , newScale , interpolate ) ;
327- success = WaitForConditionOrTimeOutWithTimeTravel ( ( ) => PositionRotationScaleMatches ( newPosition , newRotation . eulerAngles , newScale ) ) ;
327+ success = WaitForConditionOrTimeOutWithTimeTravel ( ( ) => PositionRotationScaleMatches ( newPosition , newRotation . eulerAngles , newScale ) , 120 ) ;
328328 Assert . True ( success , $ "Timed out waiting for non-authoritative position, rotation, and scale state request to be applied!") ;
329329 Assert . True ( Approximately ( newPosition , m_AuthoritativeTransform . transform . position ) , "Authoritative position does not match!" ) ;
330330 Assert . True ( Approximately ( newPosition , m_NonAuthoritativeTransform . transform . position ) , "Non-Authoritative position does not match!" ) ;
0 commit comments