diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-10-01 02:39:50 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-10-01 02:39:50 +0200 |
| commit | 820a44443aa56c18393aaa5e9973530f9101876a (patch) | |
| tree | 9f4c7d2a5ee0acc5991ee0a02a036f7367a83c3f /client/test.py | |
| parent | 05234077f36200ac87d9b0563cdd25746db3fd64 (diff) | |
| parent | be97529c4c5462aca3b01d69a91f62fd1cd5748a (diff) | |
| download | jasper-client-820a44443aa56c18393aaa5e9973530f9101876a.tar.gz jasper-client-820a44443aa56c18393aaa5e9973530f9101876a.zip | |
Merge pull request #205 from Holzhaus/no-hardcoded-modules-folder
Stop using hardcoded 'modules' prefix in brain.py
Diffstat (limited to 'client/test.py')
| -rw-r--r-- | client/test.py | 2 |
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: |
