mailr4394 - /1.3/test_suite/unit_tests/_prompt/test_structure.py


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

Header


Content

Posted by edward on January 06, 2008 - 12:34:
Author: bugman
Date: Sun Jan  6 12:34:38 2008
New Revision: 4394

URL: http://svn.gna.org/viewcvs/relax?rev=4394&view=rev
Log:
Bug fix for the model arg unit test of the structure.read_pdb() user function.

The value is a str, not an int.


Modified:
    1.3/test_suite/unit_tests/_prompt/test_structure.py

Modified: 1.3/test_suite/unit_tests/_prompt/test_structure.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_prompt/test_structure.py?rev=4394&r1=4393&r2=4394&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_prompt/test_structure.py (original)
+++ 1.3/test_suite/unit_tests/_prompt/test_structure.py Sun Jan  6 12:34:38 
2008
@@ -189,8 +189,8 @@
 
         # Loop over the data types.
         for data in DATA_TYPES:
-            # Catch the None and str arguments, and skip them.
-            if data[0] == 'None' or data[0] == 'str':
+            # Catch the None and int arguments, and skip them.
+            if data[0] == 'None' or data[0] == 'int':
                 continue
 
             # The argument test.




Related Messages


Powered by MHonArc, Updated Sun Jan 06 12:40:06 2008