From: Cameron Dale Date: Mon, 10 Dec 2007 06:06:58 +0000 (-0800) Subject: Fixed a bug in test that called hash instead of khash. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=835d8294d47cf41d9dc7d2209d4aea755ea2f318;p=quix0rs-apt-p2p.git Fixed a bug in test that called hash instead of khash. --- diff --git a/test.py b/test.py index 9cf621d..bd949fd 100644 --- a/test.py +++ b/test.py @@ -3,5 +3,5 @@ import unittest -tests = unittest.defaultTestLoader.loadTestsFromNames(['hash', 'node', 'knode', 'actions', 'ktable', 'test_krpc']) +tests = unittest.defaultTestLoader.loadTestsFromNames(['khash', 'node', 'knode', 'actions', 'ktable', 'test_krpc']) result = unittest.TextTestRunner().run(tests)