X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=blobdiff_plain;f=tests%2Ftest_cms.py;fp=tests%2Ftest_cms.py;h=faa52ab4aac0a0d11695c04e3c9d3bf4e0e883ee;hp=ac9726fa6127a17952583a67741e9dc96d7ab018;hb=7e7c1375f657b34515f3a39086a2b8d27d4a239d;hpb=68a34f95b62f57b1b5395d8a965d96ecfc7a43e9 diff --git a/tests/test_cms.py b/tests/test_cms.py index ac9726f..faa52ab 100644 --- a/tests/test_cms.py +++ b/tests/test_cms.py @@ -277,7 +277,7 @@ class TestSignedDataCERWithOpenSSL(TestCase): )) cms_path = self.tmpfile() with io_open(cms_path, "wb") as fd: - ci.encode_cer(writer=fd.write) + ci.encode_cer(fd.write) self.verify(cert_path, cms_path) fd = open(cms_path, "rb") raw = memoryview(fd.read()) if PY2 else file_mmaped(fd) @@ -321,7 +321,7 @@ class TestSignedDataCERWithOpenSSL(TestCase): )) eci_path = self.tmpfile() with open(eci_path, "wb") as fd: - OctetString(eci["eContent"]).encode_cer(writer=fd.write) + OctetString(eci["eContent"]).encode_cer(fd.write) print("ECI file written", time() - start) eci_fd = open(eci_path, "rb") eci_raw = file_mmaped(eci_fd) @@ -373,6 +373,6 @@ class TestSignedDataCERWithOpenSSL(TestCase): )) cms_path = self.tmpfile() with io_open(cms_path, "wb") as fd: - ci.encode_cer(writer=fd.write) + ci.encode_cer(fd.write) print("CMS written", time() - start) self.verify(cert_path, cms_path)