summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/test.py b/client/test.py
index 9c99688..23dd619 100644
--- a/client/test.py
+++ b/client/test.py
@@ -224,7 +224,7 @@ class TestBrain(unittest.TestCase):
def testPriority(self):
"""Does Brain correctly send query to higher-priority module?"""
my_brain = TestBrain._emptyBrain()
- hn_module = 'modules.HN'
+ hn_module = 'HN'
hn = filter(lambda m: m.__name__ == hn_module, my_brain.modules)[0]
with patch.object(hn, 'handle') as mocked_handle: