mailr17227 - /trunk/test_suite/gui_tests/model_free.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on July 11, 2012 - 11:18:
Author: bugman
Date: Wed Jul 11 11:18:44 2012
New Revision: 17227

URL: http://svn.gna.org/viewcvs/relax?rev=17227&view=rev
Log:
Bug fix for the model-free GUI auto-analysis GUI test on MS Windows.

The wizards for the CSA value and nuclear isotopes were experiencing racing 
conditions on MS Windows
with the _ok() calls.  These have been replaced with _go_next() calls which 
do not have the same
issue.


Modified:
    trunk/test_suite/gui_tests/model_free.py

Modified: trunk/test_suite/gui_tests/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/test_suite/gui_tests/model_free.py?rev=17227&r1=17226&r2=17227&view=diff
==============================================================================
--- trunk/test_suite/gui_tests/model_free.py (original)
+++ trunk/test_suite/gui_tests/model_free.py Wed Jul 11 11:18:44 2012
@@ -124,15 +124,15 @@
 
         # Set up the CSA interaction.
         analysis.value_set_csa()
-        uf_store['value.set'].wizard._ok()
+        uf_store['value.set'].wizard._go_next()
         interpreter.flush()    # Required because of the asynchronous uf 
call.
 
         # Set up the nuclear isotopes.
         analysis.spin_isotope_heteronuc()
-        uf_store['spin.isotope'].wizard._ok()
+        uf_store['spin.isotope'].wizard._go_next()
         interpreter.flush()    # Required because of the asynchronous uf 
call.
         analysis.spin_isotope_proton()
-        uf_store['spin.isotope'].wizard._ok()
+        uf_store['spin.isotope'].wizard._go_next()
         interpreter.flush()    # Required because of the asynchronous uf 
call.
 
         # Select only the tm0 and tm1 local tm models.




Related Messages


Powered by MHonArc, Updated Wed Jul 11 12:40:02 2012