Skip to content

Commit

Permalink
Make test Python-3 compatible.
Browse files Browse the repository at this point in the history
  • Loading branch information
Renelvon committed Jun 6, 2015
1 parent 0b4358d commit b4ca0ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_rudp.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_iter(self):
mock_connection2 = mock.Mock(spec_set=connection.RUDPConnection)
cm[self.addr1] = mock_connection1
cm[self.addr2] = mock_connection2
self.assertItemsEqual(iter(cm), (self.addr1, self.addr2))
self.assertEqual(set(cm), {self.addr1, self.addr2})

def test_receive_bad_json_datagram(self):
cm = self._make_cm()
Expand Down

0 comments on commit b4ca0ec

Please sign in to comment.