We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fe4c5f commit e3ac010Copy full SHA for e3ac010
2 files changed
python/http_ece/tests/test_ece.py
@@ -356,7 +356,7 @@ def is_uncompressed(k):
356
version)
357
358
def test_types(self):
359
- for c_type in ["aes128gcm", "aesgcm", "aesgcm128"]:
+ for ver in ["aes128gcm", "aesgcm", "aesgcm128"]:
360
for f in (
361
self.use_dh,
362
self.use_explicit_key,
@@ -367,7 +367,7 @@ def test_types(self):
367
):
368
ece.keys = {}
369
ece.labels = {}
370
- f(version=c_type)
+ f(version=ver)
371
372
373
class TestNode(unittest.TestCase):
python/setup.py
@@ -10,7 +10,7 @@
10
11
setup(
12
name='http_ece',
13
- version='0.6.1',
+ version='0.6.2',
14
author='Martin Thomson',
15
author_email='martin.thomson@gmail.com',
16
scripts=[],
0 commit comments