Commit 249aec4e authored by Łukasz Nowak's avatar Łukasz Nowak

Reflect reality in test names.

parent 9a6365ae
......@@ -457,9 +457,9 @@ class TestNetworkcacheClient(LibNetworkCacheMixin):
signature_private_key_file=self.signature_private_key_file)
self.assertNotEquals('', nc._getSignatureString())
def test_verification_without_signature_certificate_file_list(self):
def test_verification_without_signature_certificate_list(self):
"""
Without the signature certificate file list it is not possible to
Without the signature certificate list it is not possible to
verify if the signature if trusted or not.
So, the _verifySignatureInCertificateList should return False.
"""
......@@ -470,9 +470,9 @@ class TestNetworkcacheClient(LibNetworkCacheMixin):
signature_string = nc._getSignatureString()
self.assertFalse(nc._verifySignatureInCertificateList(signature_string))
def test_verification_with_signature_certificate_file_list(self):
def test_verification_with_signature_certificate_list(self):
"""
With the signature certificate file list it is possible to
With the signature certificate list it is possible to
verify if the signature if trusted or not.
So, the _verifySignatureInCertificateList should return True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment