Author: bugman
Date: Thu Feb 17 17:01:25 2011
New Revision: 12541
URL: http://svn.gna.org/viewcvs/relax?rev=12541&view=rev
Log:
Typo fix for the PDC reading system test.
Modified:
    branches/bruker_import/test_suite/system_tests/pdc.py
Modified: branches/bruker_import/test_suite/system_tests/pdc.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bruker_import/test_suite/system_tests/pdc.py?rev=12541&r1=12540&r2=12541&view=diff
==============================================================================
--- branches/bruker_import/test_suite/system_tests/pdc.py (original)
+++ branches/bruker_import/test_suite/system_tests/pdc.py Thu Feb 17 17:01:25 
2011
@@ -63,8 +63,8 @@
         i = 0
         for spin in spin_loop():
             # Check the R1 value and error.
-            self.assertEqaul(spin.relax_data[0], r1[i])
-            self.assertEqaul(spin.relax_error[0], r1_err[i])
+            self.assertEqual(spin.relax_data[0], r1[i])
+            self.assertEqual(spin.relax_error[0], r1_err[i])
 
             # Increment the data index.
             i += 1