From daef7c1c15ce0a26bb466d833a96e4899957d9ca Mon Sep 17 00:00:00 2001 From: Taka Date: Sat, 23 Jul 2022 20:51:50 +1000 Subject: [PATCH] Gave VASSAL tests more time to run. --- vasl_templates/webapp/tests/test_vassal.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vasl_templates/webapp/tests/test_vassal.py b/vasl_templates/webapp/tests/test_vassal.py index b99d670..93722d6 100644 --- a/vasl_templates/webapp/tests/test_vassal.py +++ b/vasl_templates/webapp/tests/test_vassal.py @@ -910,8 +910,7 @@ def _update_vsav( fname, expected ): wait_for( 2, check_response ) # wait for the updated data to come back - timeout = 120 if os.name == "nt" else 60 - wait_for( timeout, lambda: get_stored_msg( "_vsav-persistence_" ) != "" ) + wait_for( 120, lambda: get_stored_msg( "_vsav-persistence_" ) != "" ) updated_vsav_data = get_stored_msg( "_vsav-persistence_" ) if updated_vsav_data.startswith( "ERROR: " ): raise RuntimeError( updated_vsav_data )