Skip to content

Commit

Permalink
Fix old typos
Browse files Browse the repository at this point in the history
  • Loading branch information
vkurup committed Jul 24, 2015
1 parent 4a92568 commit 8154933
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion rapidsms/router/blocking/tests/test_router.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from django.test import TestCase

from rapidsms.tests import harness
from rapidsms.router.blocking import BlockingRouter
from rapidsms.messages.incoming import IncomingMessage
Expand Down Expand Up @@ -99,7 +100,7 @@ def test_process_outgoing_phases_return_value(self):
continue_sending = self.router.process_outgoing_phases(msg)
self.assertFalse(continue_sending)

def test_proccessed_flag_set(self):
def test_processed_flag_set(self):
"""
BaseMessage.processed should be set to True after
outgoing phase processing.
Expand Down
2 changes: 1 addition & 1 deletion rapidsms/tests/harness/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def send(self, **kwargs):


class RaisesBackend(BackendBase):
"""Simple backend that stores sent messages."""
"""Backend that always raises an error."""

def send(self, **kwargs):
raise Exception('Error!')

0 comments on commit 8154933

Please sign in to comment.