From f4199b5a287d69a5b26499331896c7de95f7da97 Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Sat, 14 Oct 2006 18:21:26 -0700 Subject: [PATCH] [project @ robey@lag.net-20061015012126-36370734592aff17] might as well assert this --- tests/test_transport.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_transport.py b/tests/test_transport.py index e102fe0..60ac1e7 100644 --- a/tests/test_transport.py +++ b/tests/test_transport.py @@ -603,6 +603,7 @@ class TransportTest (unittest.TestCase): bytes2 = self.tc.packetizer._Packetizer__sent_bytes # tests show this is actually compressed to *52 bytes*! including packet overhead! nice!! :) self.assert_(bytes2 - bytes < 1024) + self.assertEquals(52, bytes2 - bytes) chan.close() schan.close()