mailr8915 - /branches/bmrb/test_suite/system_tests/bmrb.py


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

Header


Content

Posted by edward on March 06, 2009 - 13:43:
Author: bugman
Date: Fri Mar  6 13:43:06 2009
New Revision: 8915

URL: http://svn.gna.org/viewcvs/relax?rev=8915&view=rev
Log:
Bug fix for the tearDown method.  The reset was removing the temp file name!


Modified:
    branches/bmrb/test_suite/system_tests/bmrb.py

Modified: branches/bmrb/test_suite/system_tests/bmrb.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/test_suite/system_tests/bmrb.py?rev=8915&r1=8914&r2=8915&view=diff
==============================================================================
--- branches/bmrb/test_suite/system_tests/bmrb.py (original)
+++ branches/bmrb/test_suite/system_tests/bmrb.py Fri Mar  6 13:43:06 2009
@@ -43,14 +43,14 @@
     def tearDown(self):
         """Reset the relax data storage object."""
 
-        # Reset the relax data storage object.
-        ds.__reset__()
-
         # Delete the temporary file.
         try:
             remove(ds.tmpfile)
         except OSError:
             pass
+
+        # Reset the relax data storage object.
+        ds.__reset__()
 
 
     def test_rw_bmrb_model_free(self):




Related Messages


Powered by MHonArc, Updated Fri Mar 06 14:40:04 2009