Skip to content

Commit

Permalink
Remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
vkurup committed Apr 16, 2015
1 parent 95e8d53 commit bb00711
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions rapidsms_multimodem/tests/test_outgoing.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,3 @@ def test_send(self, mock_requests):
identities=message.connections[0].identity,
context={})
self.assertTrue(mock_requests.get.called)

# def test_outgoing_unicode_characters(self):
# """Ensure outgoing messages are encoded properly."""
# data = {'text': self.random_unicode_string(20)}
# message = self.create_outgoing_message(data=data)
# config = {'number': '+12223334444',
# 'account_sid': self.random_string(34),
# 'auth_token': self.random_string(34),
# 'encoding': 'UTF-8'}
# backend = TwilioBackend(None, "twilio", config=config)
# data = backend.prepare_message(id_=message.id, text=message.text,
# identities=message.connections[0].identity,
# context={})
# self.assertEqual(data['body'].decode('UTF-8'), message.text)

0 comments on commit bb00711

Please sign in to comment.