Remove all the airhook stuff.
[quix0rs-apt-p2p.git] / test.py
diff --git a/test.py b/test.py
index 2dc44dd461ae3ee69f3dbf9185adbf29a030a3fe..633d85ca8004038cb274a067607e41cbb2b298fa 100644 (file)
--- a/test.py
+++ b/test.py
@@ -1,9 +1,12 @@
+## Copyright 2002-2003 Andrew Loewenstern, All Rights Reserved
+# see LICENSE.txt for license information
+
 import unittest
 
 import ktable, khashmir
 import hash, node, knode
-import actions, xmlrpcclient
+import actions
 import btemplate
-
-tests = unittest.defaultTestLoader.loadTestsFromNames(['hash', 'node', 'knode', 'btemplate', 'actions',  'ktable', 'xmlrpcclient'])
+import test_krpc
+tests = unittest.defaultTestLoader.loadTestsFromNames(['hash', 'node', 'knode', 'actions',  'ktable', 'test_krpc'])
 result = unittest.TextTestRunner().run(tests)