Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dax/jcl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rousselie <dax@happycoders.org>2007-03-25 16:29:36 +0400
committerDavid Rousselie <dax@happycoders.org>2007-03-25 16:29:36 +0400
commit0fad164e57b0daca68996e89a6f96e15090b0de1 (patch)
treeac03d388b8bb8076f280db10ece545d59d3f6850 /run_tests.py
parent289e1f2c369869c0fca0870710fe394a2baeaad3 (diff)
Correct get_register_fields inheritance usage
PresenceAccount subclasses called PresenceAccount.get_register_fields but the "cls" parameter was always PresenceAccount. Now subclasses pass a "real_class" parameter which contains the class type on which get_register_fields was called. darcs-hash:20070325122936-86b55-fb6db014fbdeaa2fa1a423b935df5e72ffe6a20a.gz
Diffstat (limited to 'run_tests.py')
-rw-r--r--run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 06b2b08..46afb0f 100644
--- a/run_tests.py
+++ b/run_tests.py
@@ -59,7 +59,7 @@ if __name__ == '__main__':
jcl_suite = unittest.TestSuite()
# jcl_suite.addTest(FeederComponent_TestCase('test_handle_tick'))
# jcl_suite.addTest(JCLComponent_TestCase('test_handle_get_register_exist_complex'))
-# jcl_suite.addTest(AccountModule_TestCase('test_mandatory_field'))
+# jcl_suite.addTest(PresenceAccount_TestCase('test_possibles_actions'))
# jcl_suite = unittest.TestSuite((account_module_suite))
# jcl_suite = unittest.TestSuite((presence_account_suite))