We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5cf06bf + 67f79fd commit 9e7cd43Copy full SHA for 9e7cd43
nova/tests/unit/compute/test_keypairs.py
@@ -218,6 +218,12 @@ def _check_success(self, mock_notify):
218
def test_success_ssh(self):
219
self._check_success()
220
221
+ def test_success_ssh_ed25519(self):
222
+ self.pub_key = ('ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFl6u75BTi8xGtSPm'
223
+ '1yVJuLE/oMtCOuEMJJnBSuZEdXz')
224
+ self.fingerprint = '1a:1d:a7:2c:4c:ff:15:c4:70:13:38:b6:ac:4c:dc:12'
225
+ self._check_success()
226
+
227
def test_success_x509(self):
228
self.keypair_type = keypair_obj.KEYPAIR_TYPE_X509
229
certif, fingerprint = fake_crypto.get_x509_cert_and_fingerprint()
0 commit comments