Author: bugman Date: Fri Nov 23 17:15:00 2007 New Revision: 3866 URL: http://svn.gna.org/viewcvs/relax?rev=3866&view=rev Log: Bug fix for all the arg unit tests for the sequence.display() user function.
Modified: 1.3/test_suite/unit_tests/_prompt/test_sequence.py Modified: 1.3/test_suite/unit_tests/_prompt/test_sequence.py URL: http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_prompt/test_sequence.py?rev=3866&r1=3865&r2=3866&view=diff ============================================================================== --- 1.3/test_suite/unit_tests/_prompt/test_sequence.py (original) +++ 1.3/test_suite/unit_tests/_prompt/test_sequence.py Fri Nov 23 17:15:00 2007 @@ -62,7 +62,7 @@ continue # The argument test. - self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, file='a', mol_name_col=data[1]) + self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, mol_name_col=data[1]) def test_display_argfail_res_num_col(self): @@ -75,7 +75,7 @@ continue # The argument test. - self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, file='a', res_num_col=data[1]) + self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, res_num_col=data[1]) def test_display_argfail_res_name_col(self): @@ -88,7 +88,7 @@ continue # The argument test. - self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, file='a', res_name_col=data[1]) + self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, res_name_col=data[1]) def test_display_argfail_spin_num_col(self): @@ -101,7 +101,7 @@ continue # The argument test. - self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, file='a', spin_num_col=data[1]) + self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, spin_num_col=data[1]) def test_display_argfail_spin_name_col(self): @@ -114,7 +114,7 @@ continue # The argument test. - self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, file='a', spin_name_col=data[1]) + self.assertRaises(RelaxNoneIntError, self.sequence_fns.display, spin_name_col=data[1]) def test_display_argfail_sep(self): @@ -127,7 +127,7 @@ continue # The argument test. - self.assertRaises(RelaxNoneStrError, self.sequence_fns.display, file='a', sep=data[1]) + self.assertRaises(RelaxNoneStrError, self.sequence_fns.display, sep=data[1]) def test_read_argfail_file(self): _______________________________________________ relax (http://nmr-relax.com) This is the relax-commits mailing list relax-commits@gna.org To unsubscribe from this list, get a password reminder, or change your subscription options, visit the list information page at https://mail.gna.org/listinfo/relax-commits