might as well assert this
This commit is contained in:
Robey Pointer 2006-10-14 18:21:26 -07:00
parent 4d090c71a6
commit f4199b5a28
1 changed files with 1 additions and 0 deletions

View File

@ -603,6 +603,7 @@ class TransportTest (unittest.TestCase):
bytes2 = self.tc.packetizer._Packetizer__sent_bytes bytes2 = self.tc.packetizer._Packetizer__sent_bytes
# tests show this is actually compressed to *52 bytes*! including packet overhead! nice!! :) # tests show this is actually compressed to *52 bytes*! including packet overhead! nice!! :)
self.assert_(bytes2 - bytes < 1024) self.assert_(bytes2 - bytes < 1024)
self.assertEquals(52, bytes2 - bytes)
chan.close() chan.close()
schan.close() schan.close()