summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-30 19:25:22 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-30 19:25:22 +0200
commitbe97529c4c5462aca3b01d69a91f62fd1cd5748a (patch)
treed500f1e1dfdf50615291f7065ae5cdd31dcc407f /client
parent45ac81e232b843051b0790fe1469dfb5abb50bda (diff)
downloadjasper-client-be97529c4c5462aca3b01d69a91f62fd1cd5748a.tar.gz
jasper-client-be97529c4c5462aca3b01d69a91f62fd1cd5748a.zip
Update Brain testcase
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: