fixed failing unit test

This commit is contained in:
Rudi Grinberg 2012-08-16 10:42:28 -04:00
parent 050ffa20f9
commit ecbde40979
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class TestReceiver(unittest.TestCase):
def test_supported(self):
# Every supported message should fire something
for event_type in self.amr.dispatch_tables.keys():
for event_type in self.amr.dispatch_table.keys():
msg = { 'event_type' : event_type, 'extra_param' : 123 }
filtered = filter_ev(msg)
# There should be a better way to test the following without