26 lines
1010 B
Diff
26 lines
1010 B
Diff
---
|
|
src/twisted/conch/test/test_keys.py | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
Index: twisted-24.3.0/src/twisted/conch/test/test_keys.py
|
|
===================================================================
|
|
--- twisted-24.3.0.orig/src/twisted/conch/test/test_keys.py
|
|
+++ twisted-24.3.0/src/twisted/conch/test/test_keys.py
|
|
@@ -15,6 +15,7 @@ from twisted.python import randbytes
|
|
from twisted.python.filepath import FilePath
|
|
from twisted.python.reflect import requireModule
|
|
from twisted.trial import unittest
|
|
+import unittest as pyunit
|
|
|
|
cryptography = requireModule("cryptography")
|
|
if cryptography is None:
|
|
@@ -250,6 +251,8 @@ class KeyTests(unittest.TestCase):
|
|
for k, v in data.items():
|
|
self.assertEqual(privateKey.data()[k], v)
|
|
|
|
+ @pyunit.skip('Upstream ticket https://twistedmatrix.com/trac/ticket/9665' +
|
|
+ ' has still not been resolved.')
|
|
def test_fromOpenSSH(self):
|
|
"""
|
|
Test that keys are correctly generated from OpenSSH strings.
|